diff options
author | frosty <passedgoandgot200@disroot.org> | 2025-05-19 09:04:27 -0400 |
---|---|---|
committer | frosty <passedgoandgot200@disroot.org> | 2025-05-19 09:04:27 -0400 |
commit | 2523e7c39308469186d7590500e833e2e9b50cda (patch) | |
tree | bacce08fe6e735f10597f0a9ad1558f47409162e | |
parent | f8cc991b774ccd1bf99d05c44ba96eb3e46cbd83 (diff) |
partially fix nav in smaller widths
-rw-r--r-- | themes/polaris/assets/css/style.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/polaris/assets/css/style.css b/themes/polaris/assets/css/style.css index f84c768..0d95e73 100644 --- a/themes/polaris/assets/css/style.css +++ b/themes/polaris/assets/css/style.css @@ -49,6 +49,10 @@ a:hover { .nav-title, main, footer { margin: 0 16px; } + + .nav-title h2 { + display: block; + } } .nav-under { @@ -60,6 +64,9 @@ a:hover { display: inline-block; margin-top: 0; margin-bottom: 0; +} + +.nav-title { padding: 16px 0; } @@ -104,6 +111,14 @@ nav ul { .nav-under { display: none; } + + .nav-title h2 { + display: block; + } + + .nav-subtext { + margin-left: 0; + } } hr { |