diff options
| author | Joe Carstairs <me@joeac.net> | 2026-09-15 18:19:16 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-09-15 18:19:16 +0100 |
| commit | 737f7a37715be973f63caa6c964b092cf4cceed5 (patch) | |
| tree | 49cf2ae0abbb33dc80c5ab1ec75a37f2ffb68788 | |
| parent | 541cbc0b51ec3925ebe8931bc9aeb9b7b7b74b3f (diff) | |
e-content has bottom border even when expanded
| -rw-r--r-- | http/src/css/feed.uppcss | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/http/src/css/feed.uppcss b/http/src/css/feed.uppcss index bc502a9..d6324e8 100644 --- a/http/src/css/feed.uppcss +++ b/http/src/css/feed.uppcss @@ -44,10 +44,12 @@ ul:has(> .h-entry) { content: ' >'; } -.e-content:not(.e-content--expanded) { +.e-content { height: 10rem; - border-bottom: solid 1px; - overflow: clip; + &:not(.e-content--expanded) { + border-bottom: solid 1px; + overflow: clip; + } } .h-entry > button { |
