fixed some overflow

This commit is contained in:
DoomKitty87 2023-08-23 23:52:33 -07:00
parent 9439662050
commit 3f109eae3a

View file

@ -32,7 +32,8 @@
html { html {
height: 100%; height: 100%;
overflow: hidden; overflow-x: hidden;
overflow-y: auto;
} }
body { body {
@ -53,15 +54,17 @@ body {
.main { .main {
flex-grow: 1; flex-grow: 1;
margin-left: 15rem;
} }
.navbar { .navbar {
position: fixed;
display: flex; display: flex;
flex-flow: column; flex-flow: column;
align-items: left; align-items: left;
justify-content: flex-start; justify-content: flex-start;
background-color: #131b23; background-color: #131b23;
min-height: 60rem; min-height: 100%;
text-align: center; text-align: center;
box-shadow: 1px 0px 10px 3px rgba(0, 0, 0, 0.511); box-shadow: 1px 0px 10px 3px rgba(0, 0, 0, 0.511);
} }