Fix overflow in explorer
This commit is contained in:
parent
c755f0bb6f
commit
f7677d3f2f
|
@ -26,12 +26,16 @@
|
|||
}
|
||||
|
||||
body {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
||||
font-size: 18pt;
|
||||
line-height: 1.5em;
|
||||
color: var(--foreground-color);
|
||||
background: var(--background-color);
|
||||
margin: 1em;
|
||||
display: flex;
|
||||
max-height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
h1,
|
||||
|
@ -67,6 +71,7 @@ textarea {
|
|||
}
|
||||
|
||||
#explorer {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue