diff options
| author | 2024-04-25 18:24:24 +0200 | |
|---|---|---|
| committer | 2024-04-25 18:24:24 +0200 | |
| commit | aecf74951cecb4de9ca94dd93e48af6f62300a0f (patch) | |
| tree | a32becdfe62f7a09eb4ffe2d019864a284cb626e /web/source/settings/style.css | |
| parent | [chore] Refactor settings panel routing (and other fixes) (#2864) (diff) | |
| download | gotosocial-aecf74951cecb4de9ca94dd93e48af6f62300a0f.tar.xz | |
[chore] Settings refactor 2: the re-refactoring-ing (#2866)
* [chore] Bit more refactoring of settings panel
* fix up some remaining things
* groovy baby yeah!
* remove unused Suspense
Diffstat (limited to 'web/source/settings/style.css')
| -rw-r--r-- | web/source/settings/style.css | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/web/source/settings/style.css b/web/source/settings/style.css index 57f8bf4cf..5af9dbc67 100644 --- a/web/source/settings/style.css +++ b/web/source/settings/style.css @@ -601,29 +601,31 @@ span.form-info { @media screen and (max-width: 60rem) { /* vertical layout */ #root { - padding: 1rem; + padding: 0.5rem; + margin: 0; grid-template-columns: 100%; grid-template-rows: auto auto; - .sidebar { + div.sidebar { justify-self: auto; - margin-bottom: 2rem; + margin-bottom: 0; } - .sidebar, section.with-sidebar { + div.sidebar, section.with-sidebar { border-top-left-radius: $br; border-top-right-radius: $br; border-bottom-left-radius: $br; border-bottom-right-radius: $br; } - .sidebar a:first-child h2 { - border-top-right-radius: $br; + section.with-sidebar { + grid-column: 1; + padding: 1rem; } - } - section { - grid-column: 1; + div.sidebar a:first-child h2 { + border-top-right-radius: $br; + } } .user-profile .overview { |
