v0.9.0 user and session management improvement, xterm.js addons

This commit is contained in:
2026-02-07 15:37:52 -05:00
parent 0a85cc88bb
commit 820ad7eb27
62 changed files with 875 additions and 446 deletions

View File

@ -3,15 +3,24 @@
--host-surface: #1a1b26;
}
body {
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
background: var(--host-bg);
width: 100%;
height: 100%;
overflow: hidden;
font-family: monospace;
background: var(--host-bg);
}
#terminal {
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}