Fix UL styles

This commit is contained in:
David Eisinger
2023-06-01 12:00:47 -04:00
parent 297cd59eff
commit 3f48228fdc
2 changed files with 17 additions and 5 deletions

View File

@@ -31,10 +31,21 @@ ul {
padding: 0;
text-indent: -2ch;
li::before {
color: #aaa;
content: '';
margin: 0 1ch 0 0;
li {
&::before {
color: #aaa;
content: '';
float: left;
margin-right: 2ch;
}
p {
text-indent: 0;
}
p:first-child {
text-indent: -2ch;
}
}
}