diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 7170bf9..8c0ad4f 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -103,6 +103,7 @@ @media (max-width: 700px) { #layout { flex-direction: column; + margin-top: 10px; gap: 20px; } } diff --git a/src/routes/Navbar.svelte b/src/routes/Navbar.svelte index 3857553..c0606fe 100644 --- a/src/routes/Navbar.svelte +++ b/src/routes/Navbar.svelte @@ -35,8 +35,11 @@ } @media (max-width: 700px) { #navbar { - flex-direction: row; - justify-content: start; + display: inline-block; + white-space: pre-wrap; + } + #navbar .nav-link { + display: inline-block; } }