diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 21:36:36 -0700 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 21:36:36 -0700 |
commit | 9b2851db1f9cb09c49f7f4dc5c43959c0b6c0489 (patch) | |
tree | 206d42f3b8e2ef524a3a242f5555d30f537f2e45 /static | |
parent | 2955e445644990b6dc5a5d28d27f2e66409c4c4d (diff) | |
download | website-9b2851db1f9cb09c49f7f4dc5c43959c0b6c0489.tar website-9b2851db1f9cb09c49f7f4dc5c43959c0b6c0489.tar.gz website-9b2851db1f9cb09c49f7f4dc5c43959c0b6c0489.tar.bz2 |
newline on smaller screens
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css index 04cf7b0..cf91c51 100644 --- a/static/style.css +++ b/static/style.css @@ -189,8 +189,12 @@ footer { } } +.split-navbar { + display: none; +} + @media(max-width:502px) { - .navbar-item { - font-size: 14px; + .split-navbar { + display: inline; } } |