From 29dc3ec175be481a66f25bb1e2bb5dfd17b746f2 Mon Sep 17 00:00:00 2001 From: David Eisinger Date: Mon, 8 Jan 2024 12:37:36 -0500 Subject: [PATCH] Fix iOS UL issue --- 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 index 5efd7ed..4aed0de 100644 --- 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; } } }