Skip to content

Commit 6706581

Browse files
committed
use content:''; for ul/li
*oops*
1 parent 76f659b commit 6706581

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/index.test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ it('should generate the default classes for the typography components', async ()
7474
}
7575
7676
.prose ul > li::before {
77-
content: none;
77+
content: \\"\\";
7878
position: absolute;
7979
background-color: #d1d5db;
8080
border-radius: 50%;
@@ -1358,7 +1358,7 @@ it('should generate the default classes for the typography components', async ()
13581358
}
13591359
13601360
.sm\\\\:prose ul > li::before {
1361-
content: none;
1361+
content: \\"\\";
13621362
position: absolute;
13631363
background-color: #d1d5db;
13641364
border-radius: 50%;
@@ -2643,7 +2643,7 @@ it('should generate the default classes for the typography components', async ()
26432643
}
26442644
26452645
.md\\\\:prose ul > li::before {
2646-
content: none;
2646+
content: \\"\\";
26472647
position: absolute;
26482648
background-color: #d1d5db;
26492649
border-radius: 50%;
@@ -3928,7 +3928,7 @@ it('should generate the default classes for the typography components', async ()
39283928
}
39293929
39303930
.lg\\\\:prose ul > li::before {
3931-
content: none;
3931+
content: \\"\\";
39323932
position: absolute;
39333933
background-color: #d1d5db;
39343934
border-radius: 50%;
@@ -5213,7 +5213,7 @@ it('should generate the default classes for the typography components', async ()
52135213
}
52145214
52155215
.xl\\\\:prose ul > li::before {
5216-
content: none;
5216+
content: \\"\\";
52175217
position: absolute;
52185218
background-color: #d1d5db;
52195219
border-radius: 50%;
@@ -6498,7 +6498,7 @@ it('should generate the default classes for the typography components', async ()
64986498
}
64996499
65006500
.\\\\32xl\\\\:prose ul > li::before {
6501-
content: none;
6501+
content: \\"\\";
65026502
position: absolute;
65036503
background-color: #d1d5db;
65046504
border-radius: 50%;

src/styles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = (theme) => ({
4040
position: 'relative',
4141
},
4242
'ul > li::before': {
43-
content: 'none',
43+
content: '""',
4444
position: 'absolute',
4545
backgroundColor: theme('colors.gray.300', defaultTheme.colors.gray[300]),
4646
borderRadius: '50%',

0 commit comments

Comments
 (0)