2024-05-13 23:40:18 +02:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
.block {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-05-13 23:48:59 +02:00
|
|
|
overflow: hidden;
|
2024-05-14 00:10:31 +02:00
|
|
|
min-height: 0;
|
2024-05-13 23:40:18 +02:00
|
|
|
|
2024-05-14 08:45:41 +02:00
|
|
|
.block-header {
|
|
|
|
display: flex;
|
2024-05-16 22:22:46 +02:00
|
|
|
flex-direction: row;
|
2024-05-14 08:45:41 +02:00
|
|
|
flex-shrink: 0;
|
|
|
|
height: 30px;
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: var(--panel-bg-color);
|
2024-05-16 22:22:46 +02:00
|
|
|
|
|
|
|
.block-header-text {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close-button {
|
|
|
|
font-size: 12px;
|
|
|
|
padding-right: 5px;
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2024-05-14 08:45:41 +02:00
|
|
|
}
|
2024-05-13 23:40:18 +02:00
|
|
|
|
2024-05-14 08:45:41 +02:00
|
|
|
.block-content {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
min-height: 0;
|
|
|
|
}
|
2024-05-13 23:40:18 +02:00
|
|
|
}
|