mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web: fix app height & overscroll
This commit is contained in:
parent
19661f2f72
commit
ba2d0bb67f
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue