2024-06-18 06:50:33 +02:00
|
|
|
// 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;
|
2024-06-21 23:44:11 +02:00
|
|
|
position: relative;
|
2024-08-27 22:46:13 +02:00
|
|
|
padding-top: 3px;
|
2024-08-27 22:41:36 +02:00
|
|
|
padding-right: 3px;
|
2024-06-18 06:50:33 +02:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|