From cc948488387adbff1af1604c50b40dcfc4fc6f9e Mon Sep 17 00:00:00 2001 From: Ushie Date: Tue, 6 Jun 2023 14:35:05 +0300 Subject: [PATCH] fix(sidebar): replace `100vh` with `100%` resolves #104 --- src/layout/Navbar/NavHost.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/Navbar/NavHost.svelte b/src/layout/Navbar/NavHost.svelte index 430bb44..0502763 100644 --- a/src/layout/Navbar/NavHost.svelte +++ b/src/layout/Navbar/NavHost.svelte @@ -236,7 +236,7 @@ .nav-wrapper { flex-direction: column; gap: 0.5rem; - height: 100vh; + height: 100%; margin: 0 auto; position: fixed; width: 20rem;