From 56f9da96a79b109e0a131fa249ead37553ce8f8b Mon Sep 17 00:00:00 2001 From: pommicket Date: Mon, 28 Aug 2023 20:47:47 -0400 Subject: fix scrolling issue --- style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 4bcd692..7697264 100644 --- a/style.css +++ b/style.css @@ -250,19 +250,22 @@ input[type='number'] { #guide-body { display: flex; margin: 0; + overflow: hidden; } #guide-sidebar { flex: 1; border-right: 2px solid white; height: 100vh; - position: sticky; background: #333; + overflow: auto; } #guide-contents { flex: 4; padding: 4px; + height: 100vh; + overflow: auto; } .guide-sidebar-item, -- cgit v1.2.3