daggerheart/styles/less/global/tab-navigation.less
WBHarry 53f15a7fde
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
[Feature] NPC Actors (#1949)
2026-05-30 21:11:43 -04:00

32 lines
717 B
Text
Executable file

@import '../utils/colors.less';
@import '../utils/fonts.less';
.daggerheart.dh-style {
.tab-navigation {
margin: 5px 0 10px 0;
width: 100%;
.navigation-container {
display: flex;
align-items: center;
gap: 8px;
.navigation-inner-container {
flex: 1;
.feature-tab {
border: none;
white-space: nowrap;
a {
color: @color-text-emphatic;
&.empty:not(.active) {
opacity: 0.4;
}
}
}
}
}
}
}