web: fix app height & overscroll

This commit is contained in:
wukko 2024-06-25 16:14:54 +06:00
parent 19661f2f72
commit ba2d0bb67f
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -88,6 +88,9 @@
margin: 0;
background-color: var(--sidebar-bg);
color: var(--secondary);
height: 100vh;
overflow: hidden;
overscroll-behavior-y: none;
}
:global(*) {
@ -207,7 +210,9 @@
}
#cobalt {
height: 100vh;
position: fixed;
height: 100%;
width: 100%;
display: grid;
grid-template-columns: calc(var(--sidebar-width) + 8px) 1fr;
overflow: hidden;