ds4/scss/components/shared/_sheet_tab.scss

20 lines
252 B
SCSS
Raw Normal View History

2021-07-11 05:04:05 +02:00
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
*
* SPDX-License-Identifier: MIT
*/
2022-01-21 03:22:17 +01:00
.ds4-sheet-tab {
2023-07-10 22:23:13 +02:00
flex-direction: column;
flex-wrap: nowrap;
height: 100%;
2022-01-21 03:22:17 +01:00
2023-07-10 22:23:13 +02:00
&[data-tab].active {
display: flex;
}
2022-01-21 03:22:17 +01:00
2023-07-10 22:23:13 +02:00
> * {
flex-shrink: 0;
}
2021-07-11 05:04:05 +02:00
}