mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
d8edea9fbc
forgot to update .editorconfig to include scss...
25 lines
537 B
SCSS
25 lines
537 B
SCSS
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.multiline-input {
|
|
flex-grow: 1;
|
|
box-shadow: none;
|
|
box-sizing: border-box;
|
|
background-color: transparent;
|
|
resize: none;
|
|
overflow-y: auto;
|
|
line-height: 1.5;
|
|
color: var(--form-element-text-color);
|
|
vertical-align: top;
|
|
height: auto;
|
|
padding: 0;
|
|
border: 1px solid var(--form-element-border-color);
|
|
padding: 5px;
|
|
border-radius: 4px;
|
|
min-height: 26px;
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
}
|
|
}
|