From bc40990b52bcbaaa1cb612960bfefe166a1c3e40 Mon Sep 17 00:00:00 2001 From: Leni Aniva Date: Fri, 11 Oct 2024 00:53:35 -0700 Subject: [PATCH] feat: Enable wrapping of main navbar when its long --- src/routes/+page.svelte | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index f8c035e..340d511 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -48,12 +48,12 @@ class="floater-elem" style="padding-bottom: {(1 - progress) * 50}vh" > -
- Bio + @@ -98,8 +98,8 @@ background-position: center center; z-index: -10; position: fixed; - min-width: 100vw; - min-height: 100vh; + min-width: 100%; + min-height: 100%; overscroll-behaviour: none; } #front { @@ -116,6 +116,10 @@ margin-left: auto; margin-right: auto; } + #navbar { + display: flex; + flex-wrap: wrap; + } .floater-elem { margin-left: auto; margin-right: auto;