ds4/scss/components/shared/_sheet_tab_nav.scss

29 lines
727 B
SCSS
Raw Normal View History

2022-01-21 03:22:17 +01:00
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
*
* SPDX-License-Identifier: MIT
*/
@use "../../utils/variables";
.ds4-sheet-tab-nav {
2023-07-10 22:23:13 +02:00
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;
2022-01-21 03:22:17 +01:00
2023-07-10 22:23:13 +02:00
&__item {
flex: 0 1 auto !important; // necessary to override the styling from lang-de, see https://gitlab.com/henry4k/foundryvtt-lang-de/-/issues/9
font-weight: bold;
white-space: nowrap;
2022-01-21 03:22:17 +01:00
2023-07-10 22:23:13 +02:00
&.active {
text-shadow: 0 0 variables.$padding-md var(--color-shadow-primary);
2022-01-21 03:22:17 +01:00
}
2023-07-10 22:23:13 +02:00
}
2022-01-21 03:22:17 +01:00
}