mirror of
https://github.com/DoomKitty87/seafoam.git
synced 2024-12-28 16:06:39 +01:00
fixed some overflow
This commit is contained in:
parent
9439662050
commit
3f109eae3a
1 changed files with 5 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue