mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-09 00:30:49 +00:00
b0062343c7
* Update server.cjs (#17) Redact only sensitive info for logging * Changes to README.md for clear support paths. * Switched to UTF-8 fixing non-english character bugs, revamped console logging system, fixed misc console errors, and fixed copy/paste. Warning: the terminal sizing in this version is very buggy so be warned. * Fixed multi-line command issues with switching between split and not split. * Shifted terminal down and to the right so its not squished up in the top left corner. Fix scroll wheel sizing and looks. Prepared for this bug update release. --------- Co-authored-by: Dale Driver <firestrife23@users.noreply.github.com>
38 lines
619 B
CSS
38 lines
619 B
CSS
@import '@fontsource/inter';
|
|
@import "tailwindcss";
|
|
|
|
.tab-group::after {
|
|
content: '';
|
|
width: 1px;
|
|
height: 24px;
|
|
background-color: #4a5568;
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.terminal-container {
|
|
min-height: 0;
|
|
}
|
|
|
|
.terminal-container > div {
|
|
min-height: 0;
|
|
}
|
|
|
|
.tablist::-webkit-scrollbar {
|
|
width: 1px !important;
|
|
height: 1px !important;
|
|
background: transparent !important;
|
|
}
|
|
|
|
.tablist::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.2) !important;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
} |