15 lines
277 B
SCSS
15 lines
277 B
SCSS
@use "../utils/variables";
|
|
|
|
nav.tabs {
|
|
height: auto;
|
|
border-top: variables.$border-groove;
|
|
border-bottom: variables.$border-groove;
|
|
.item {
|
|
font-weight: bold;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.item.active {
|
|
text-decoration: none;
|
|
}
|
|
}
|