mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
d8edea9fbc
forgot to update .editorconfig to include scss...
37 lines
738 B
SCSS
37 lines
738 B
SCSS
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.tabcontent {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-grow: 1;
|
|
min-height: 0;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
padding-top: 3px;
|
|
padding-right: 3px;
|
|
|
|
.block-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 1 0 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
|
|
.drag-preview {
|
|
display: block;
|
|
width: 100px;
|
|
height: 20px;
|
|
border-radius: 2px;
|
|
background-color: aquamarine;
|
|
color: black;
|
|
text-align: center;
|
|
}
|