fix: body overflowing
This commit is contained in:
@ -54,9 +54,14 @@
|
||||
/* SCREEN MODE */
|
||||
@media screen {
|
||||
|
||||
body {
|
||||
min-height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
aside,
|
||||
main {
|
||||
height: 100vh;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
@ -71,6 +76,17 @@
|
||||
/* UNIVERSAL */
|
||||
@media all {
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
background: var(--background1);
|
||||
@ -225,7 +241,7 @@
|
||||
border-left: 1px solid var(--border-color);
|
||||
background: #1a1a1a;
|
||||
color: var(--text1);
|
||||
height: 100vh;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user