summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-08-28 20:47:47 -0400
committerpommicket <pommicket@gmail.com>2023-08-28 20:47:47 -0400
commit56f9da96a79b109e0a131fa249ead37553ce8f8b (patch)
tree06aca08ab82295f990f902339069d7699d31bee6 /style.css
parentf4cc8ce7a8712e2e840b0c120a3f86eadb665626 (diff)
fix scrolling issue
Diffstat (limited to 'style.css')
-rw-r--r--style.css5
1 files changed, 4 insertions, 1 deletions
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,