commit 29dc3ec175be481a66f25bb1e2bb5dfd17b746f2 parent 6110b4223506901a3c024af77d7b5d0607b0463f Author: David Eisinger <[email protected]> Date: Mon, 8 Jan 2024 12:37:36 -0500 Fix iOS UL issue Diffstat:
| M | themes/v2/assets/css/style.scss | | | 27 | ++++----------------------- |
1 file changed, 4 insertions(+), 23 deletions(-)
diff --git a/themes/v2/assets/css/style.scss b/themes/v2/assets/css/style.scss @@ -40,34 +40,15 @@ hr { ul { list-style: none; - margin-left: 2ch; - padding: 0; - text-indent: -2ch; + padding: 0 0 0 2ch; + position: relative; li { &::before { color: #aaa; content: '∗'; - float: left; - margin-right: 2ch; - } - - p { - text-indent: 0; - - &:first-child { - text-indent: -2ch; - } - } - - blockquote { - p:first-child { - text-indent: 0; - } - - pre { - text-indent: 0; - } + left: 0ch; + position: absolute; } } }