Skip to content

Commit

Permalink
fix(list): swapped to use marker
Browse files Browse the repository at this point in the history
  • Loading branch information
agliga committed Jan 31, 2025
1 parent bb06b64 commit 7a00ea9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion dist/list/list.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@

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

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

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

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

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

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

0 comments on commit 7a00ea9

Please sign in to comment.