diff options
| author | Joe Carstairs <me@joeac.net> | 2026-09-15 18:21:23 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-09-15 18:21:23 +0100 |
| commit | 82bd7c858ab7267e00c81373b7b47cf2d273c53f (patch) | |
| tree | 61692b650956cef78ea4502be1993272949cf51f | |
| parent | cbd00e8b2cdebfe8f1876f4426836a1e61545f2c (diff) | |
fix :not notation
| -rw-r--r-- | http/src/css/feed.uppcss | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/http/src/css/feed.uppcss b/http/src/css/feed.uppcss index d6324e8..81a23b4 100644 --- a/http/src/css/feed.uppcss +++ b/http/src/css/feed.uppcss @@ -46,10 +46,11 @@ ul:has(> .h-entry) { .e-content { height: 10rem; - &:not(.e-content--expanded) { - border-bottom: solid 1px; - overflow: clip; - } +} + +.e-content:not(.e-content--expanded) { + border-bottom: solid 1px; + overflow: clip; } .h-entry > button { |
