Fix iOS UL issue

This commit is contained in:
David Eisinger
2024-01-08 12:37:36 -05:00
parent 6110b42235
commit 29dc3ec175

View File

@@ -40,34 +40,15 @@ hr {
ul { ul {
list-style: none; list-style: none;
margin-left: 2ch; padding: 0 0 0 2ch;
padding: 0; position: relative;
text-indent: -2ch;
li { li {
&::before { &::before {
color: #aaa; color: #aaa;
content: ''; content: '';
float: left; left: 0ch;
margin-right: 2ch; position: absolute;
}
p {
text-indent: 0;
&:first-child {
text-indent: -2ch;
}
}
blockquote {
p:first-child {
text-indent: 0;
}
pre {
text-indent: 0;
}
} }
} }
} }