Fix overflow in explorer
This commit is contained in:
parent
c755f0bb6f
commit
f7677d3f2f
|
@ -26,12 +26,16 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
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;
|
font-size: 18pt;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
color: var(--foreground-color);
|
color: var(--foreground-color);
|
||||||
background: var(--background-color);
|
background: var(--background-color);
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
|
display: flex;
|
||||||
|
max-height: 100vh;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
|
@ -67,6 +71,7 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
#explorer {
|
#explorer {
|
||||||
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue