1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-23 02:14:26 +04:00
Files
tabler/scss/ui/_nav.scss
2019-03-12 22:09:23 +01:00

41 lines
718 B
SCSS

.nav-tabs {
.icon {
color: $text-muted;
}
.nav-link {
padding-right: $card-spacer-x;
padding-left: $card-spacer-x;
line-height: 20px;
color: $text-muted-light;
cursor: pointer;
background: transparent;
border: none;
border-bottom: 1px solid transparent;
transition: .3s color, .3s border-color;
&:hover {
color: $body-color;
border-color: transparent;
}
&.disabled {
color: rgba($text-muted, .2);
}
&.active {
background: inherit;
border-color: transparent;
border-bottom-color: $primary;
}
}
}
.nav-tabs-alt {
.nav-link {
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
}
}