19 lines
252 B
SCSS
19 lines
252 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
.ds4-sheet-tab {
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
height: 100%;
|
|
|
|
&[data-tab].active {
|
|
display: flex;
|
|
}
|
|
|
|
> * {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|