diff options
author | bptato <nincsnevem662@gmail.com> | 2024-04-03 23:21:37 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-04-03 23:26:45 +0200 |
commit | e673d6712b7f5a3ad543521bffaa479ab7a83fde (patch) | |
tree | 42d163ee2be7efaa95d40177367701005a557ac3 | |
parent | 5cf524958fc73d6912aef4866500b0cc46fa1bc6 (diff) | |
download | chawan-e673d6712b7f5a3ad543521bffaa479ab7a83fde.tar.gz |
ua.css: use padding for lists, not margin
FF does it this way as well, and it seems sr.ht depends on it being padding instead of margin.
-rw-r--r-- | res/ua.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/ua.css b/res/ua.css index f58fb693..7c43cc0e 100644 --- a/res/ua.css +++ b/res/ua.css @@ -25,7 +25,7 @@ textarea, iframe, frame, input, img { } ol, ul, menu, dir { - margin-left: 4ch; + padding-left: 4ch; margin-top: 1em; margin-bottom: 1em; } |