mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-28 12:46:41 +00:00
32 lines
671 B
SCSS
32 lines
671 B
SCSS
@import './base';
|
|
|
|
.nav-pills__nav {
|
|
position: sticky !important;
|
|
top: $headerHeight - 1px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.nav-pills__nav-link.nav-pills__nav-link {
|
|
border-radius: 0 !important;
|
|
padding-bottom: calc(.5rem - 3px) !important;
|
|
border-bottom: 3px solid transparent !important;
|
|
color: #5d6778;
|
|
font-weight: 700;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
|
|
@media (min-width: $smMin) and (max-width: $mdMax) {
|
|
font-size: 89%;
|
|
}
|
|
}
|
|
|
|
.nav-pills__nav-link:hover {
|
|
color: $mainColor !important;
|
|
}
|
|
|
|
.nav-pills__nav-link.active {
|
|
border-color: $mainColor !important;
|
|
background-color: var(--primary-color) !important;
|
|
color: $mainColor !important;
|
|
}
|