Skip to content

Commit

Permalink
fix(list): swapped to use marker (#2553)
Browse files Browse the repository at this point in the history
  • Loading branch information
agliga authored Feb 4, 2025
1 parent bb06b64 commit c59f7e6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/lemon-falcons-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ebay/skin": minor
---

fix(list): swapped to use marker
6 changes: 5 additions & 1 deletion dist/list/list.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

.list ol,
.list ul {
list-style: none;
margin: 0;
padding: 0;
}

.list li::marker {
content: "";
font-size: 0;
}

.list fieldset > *,
.list li > * {
align-items: center;
Expand Down
6 changes: 5 additions & 1 deletion src/sass/list/list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@

.list ul,
.list ol {
list-style: none;
margin: 0;
padding: 0;
}

.list li::marker {
content: "";
font-size: 0;
}

.list li > *,
.list fieldset > * {
@include background-color-token(
Expand Down

0 comments on commit c59f7e6

Please sign in to comment.