Fix navbar and sidebar on short pages
authorLanius Trolling <lanius@laniustrolling.dev>
Sat, 2 Mar 2024 21:28:25 +0000 (16:28 -0500)
committerLanius Trolling <lanius@laniustrolling.dev>
Sat, 2 Mar 2024 21:28:25 +0000 (16:28 -0500)
src/jvmMain/resources/static/style.css

index 412ab3537c50967d14f4bf6a2fc66b78b0737dc6..af0ac5076644dadbb3357e76c5804c5ca6728d6b 100644 (file)
@@ -553,21 +553,21 @@ aside.mobile img {
 
        nav.desktop {
                width: 12vw;
-               float: left;
-               margin: 0 2vw;
+               margin: 2vh 2vw;
 
-               position: sticky;
-               top: 2vh;
+               position: fixed;
+               top: 0;
+               left: 0;
                max-height: 96vh;
        }
 
        aside.desktop {
                width: 12vw;
-               float: right;
-               margin: 0 2vw;
+               margin: 2vh 2vw;
 
-               position: sticky;
-               top: 2vh;
+               position: fixed;
+               top: 0;
+               right: 0;
                max-height: 96vh;
        }