Skip to content

Commit 13db1ad

Browse files
committed
add failing test
1 parent af1d4aa commit 13db1ad

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

packages/tailwindcss/src/utilities.test.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10695,6 +10695,8 @@ test('bg', async () => {
1069510695
'bg-red-500/2.75',
1069610696
'bg-red-500/[0.5]',
1069710697
'bg-red-500/[50%]',
10698+
'bg-red-500/100',
10699+
'bg-red-500/[100%]',
1069810700
'bg-blue-500',
1069910701
'bg-current',
1070010702
'bg-current/50',
@@ -10992,6 +10994,10 @@ test('bg', async () => {
1099210994
}
1099310995
}
1099410996

10997+
.bg-red-500\\/100 {
10998+
background-color: var(--color-red-500);
10999+
}
11000+
1099511001
.bg-red-500\\/\\[0\\.5\\] {
1099611002
background-color: #ef444480;
1099711003
}
@@ -11012,6 +11018,10 @@ test('bg', async () => {
1101211018
}
1101311019
}
1101411020

11021+
.bg-red-500\\/\\[100\\%\\] {
11022+
background-color: var(--color-red-500);
11023+
}
11024+
1101511025
.bg-transparent {
1101611026
background-color: #0000;
1101711027
}

0 commit comments

Comments
 (0)