diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-18 08:45:51 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-18 08:45:51 +0100 |
| commit | 35ef330df8e70676b19267396cc05ce91f67a38d (patch) | |
| tree | 18e66f5caa05749a163fd696f4a01af51b8cd399 /http/src/css/feed.uppcss | |
| parent | 348b76aa048f665d94f31ce8c7432cadb6b99d8f (diff) | |
fix css bug in http microlog: ul inside microlog posts not getting list
markers
Diffstat (limited to 'http/src/css/feed.uppcss')
| -rw-r--r-- | http/src/css/feed.uppcss | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/http/src/css/feed.uppcss b/http/src/css/feed.uppcss index 7a63981..60fcd6d 100644 --- a/http/src/css/feed.uppcss +++ b/http/src/css/feed.uppcss @@ -3,6 +3,15 @@ margin-block-start: var(--spacing-block-md); } +.h-feed ul:has(> .h-entry) { + list-style-type: none; + margin-inline: 0; + + ul { + list-style-type: disc; + } +} + .h-feed .h-entry { display: flex; flex-direction: column; |
