28 lines
626 B
SCSS
28 lines
626 B
SCSS
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021 Johannes Loher
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*/
|
||
|
|
||
|
@use "../../utils/variables";
|
||
|
|
||
|
.ds4-sheet-tab-nav {
|
||
|
border-bottom: variables.$border-groove;
|
||
|
border-top: variables.$border-groove;
|
||
|
display: flex;
|
||
|
flex-wrap: nowrap;
|
||
|
height: calc(2 * var(--line-height-16));
|
||
|
justify-content: space-around;
|
||
|
line-height: calc(2 * var(--line-height-16));
|
||
|
margin: variables.$margin-sm 0;
|
||
|
|
||
|
&__item {
|
||
|
font-weight: bold;
|
||
|
white-space: nowrap;
|
||
|
|
||
|
&.active {
|
||
|
text-shadow: 0 0 variables.$padding-md var(--color-shadow-primary);
|
||
|
}
|
||
|
}
|
||
|
}
|