daggerheart/styles/less/global/tab-navigation.less
Carlos Fernandez fa6f9d56b8
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
Add emphatic color variable and set up scoped based overrides for core variables (#1932)
2026-05-26 22:18:52 +02:00

29 lines
616 B
Text
Executable file

@import '../utils/colors.less';
@import '../utils/fonts.less';
.daggerheart.dh-style {
.tab-navigation {
margin: 5px 0;
height: 40px;
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;
}
}
}
}
}
}