20 lines
314 B
CSS
20 lines
314 B
CSS
#root {
|
|
width: 100%;
|
|
height: 100vh;
|
|
/* background-color: aliceblue; */
|
|
}
|
|
|
|
button:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.xterm-viewport {
|
|
overflow-y: hidden !important;
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
.terminal_scroll > .xterm > .xterm-viewport {
|
|
overflow-y: scroll !important;
|
|
overscroll-behavior: contain;
|
|
}
|