diff options
author | 2022-08-27 11:40:51 +0200 | |
---|---|---|
committer | 2022-08-27 11:40:51 +0200 | |
commit | c951ba1d238f63925decab8f9294e52239887d0f (patch) | |
tree | 1f90ddc06e97923f344426866a382d19f0e8954b | |
parent | [bugfix] Status visibility + `excludeReplies` fixes (#769) (diff) | |
download | gotosocial-c951ba1d238f63925decab8f9294e52239887d0f.tar.xz |
[frontend] gentle css fiddling (#761)
* gentle css fiddling
* Make grid alignment a lil more consistent too
-rw-r--r-- | web/source/css/status.css | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/web/source/css/status.css b/web/source/css/status.css index 945aa2c4c..9a83a7fd5 100644 --- a/web/source/css/status.css +++ b/web/source/css/status.css @@ -97,6 +97,8 @@ main { } .spoiler { + padding-bottom: 0.5rem; + display: flex; align-items: center; flex-wrap: wrap; @@ -118,7 +120,8 @@ main { .text { margin: 0; margin-top: 0.5rem; - grid-column: span 2; + grid-column: span 3; + grid-row: span 1; overflow: hidden; position: relative; @@ -313,7 +316,6 @@ main { } grid-column: span 3; - margin-top: 1.5rem; flex-wrap: wrap; div.stats::after { @@ -371,20 +373,13 @@ main { background: $status_focus_bg; padding-bottom: 0; - .text { - margin-top: 0; - grid-column: span 3; - grid-row: span 1; + .contentgrid { + padding-bottom: 1rem; } .info { display: flex; } - - .media { - /* grid-auto-rows: 1fr; */ - /* max-height: 120rem; */ - } } } |