From 8536d335bccde1b92b5e1cb99c40ed4a403e5efb Mon Sep 17 00:00:00 2001 From: Amatsugu Date: Sat, 12 Jul 2025 13:52:32 -0400 Subject: [PATCH] Make Search Sticky --- AobaClient/assets/style/main.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AobaClient/assets/style/main.scss b/AobaClient/assets/style/main.scss index 3ad1400..9ffecc1 100644 --- a/AobaClient/assets/style/main.scss +++ b/AobaClient/assets/style/main.scss @@ -2,6 +2,8 @@ @import "colors"; * { box-sizing: border-box; + scrollbar-color: $accentColor transparent; + scrollbar-width: thin; } :root { @@ -18,6 +20,7 @@ .stickyTop { top: 0; position: sticky; + z-index: 100; } body { @@ -34,6 +37,8 @@ body { #content { grid-area: Content; overflow-x: hidden; + overflow-y: auto; + height: 100dvh; padding: 10px; /* margin-left: $navBarSize; */ }