Files
webshell/src/styles/terminal.scss
2026-05-19 21:42:14 +02:00

27 lines
600 B
SCSS

@use "colors.scss" as colors;
@forward "cursor.scss";
#terminal {
background: colors.$terminal-background;
color: colors.$terminal-white;
font-family: "CaskaydiaCove", "CaskaydiaCove Nerd Font", "JetBrains Mono", "JetBrains Mono Nerd", monospace;
font-variant-ligatures: normal;
font-feature-settings: "liga" 1, "calt" 1;
::-moz-selection {
background: colors.$terminal-white;
color: colors.$terminal-background;
}
p {
margin: 0;
height: fit-content;
}
.line {
width: fit-content;
white-space: pre;
}
}