Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit c59f7e6

Browse files
authored
fix(list): swapped to use marker (#2553)
1 parent bb06b64 commit c59f7e6

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.changeset/lemon-falcons-live.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
fix(list): swapped to use marker

dist/list/list.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@
44

55
.list ol,
66
.list ul {
7-
list-style: none;
87
margin: 0;
98
padding: 0;
109
}
1110

11+
.list li::marker {
12+
content: "";
13+
font-size: 0;
14+
}
15+
1216
.list fieldset > *,
1317
.list li > * {
1418
align-items: center;

src/sass/list/list.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88

99
.list ul,
1010
.list ol {
11-
list-style: none;
1211
margin: 0;
1312
padding: 0;
1413
}
1514

15+
.list li::marker {
16+
content: "";
17+
font-size: 0;
18+
}
19+
1620
.list li > *,
1721
.list fieldset > * {
1822
@include background-color-token(

0 commit comments

Comments
 (0)