Added a key combination to enter debug mode

This commit is contained in:
2021-04-25 16:48:02 +02:00
parent 46a361731a
commit f6d19b22ac
2 changed files with 24 additions and 2 deletions

View File

@ -12,4 +12,13 @@ body {
/* Remove the scrollbar from xterm */
.xterm-viewport {
overflow-y: hidden !important;
}
/* Hide the screen by default */
#screen {
display: none;
}
#screen.visible {
display: block;
}