fix: body overflowing

This commit is contained in:
2026-02-02 10:18:42 +01:00
parent 16ff836274
commit 7238d02a13

View File

@ -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;
}