25 lines
441 B
SCSS
25 lines
441 B
SCSS
@use "./terminal";
|
|
@use "../variables.scss";
|
|
|
|
@mixin input {
|
|
font-size: 1.2rem;
|
|
background-color: transparent;
|
|
border: 0;
|
|
outline: 0;
|
|
width: 90%;
|
|
/* Pester me when this gets undrafted */
|
|
caret-shape: block;
|
|
|
|
&:disabled { color: white }
|
|
}
|
|
|
|
@mixin styling {
|
|
@include terminal.formatting;
|
|
|
|
width: 100vw;
|
|
height: calc(99.3vh - variables.$header-Y - variables.$footer-Y);
|
|
padding: 5px;
|
|
overflow-y: auto;
|
|
|
|
input { @include input; }
|
|
} |