mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-13 13:17:03 +03:00
28 lines
471 B
SCSS
28 lines
471 B
SCSS
|
|
.nav-tabs {
|
|
background: $brand-primary;
|
|
> li {
|
|
> a {
|
|
margin: 0;
|
|
color: $white;
|
|
border: 0;
|
|
&:hover {
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|
|
}
|
|
> a,
|
|
> a:hover,
|
|
> a:focus {
|
|
font-weight: 500;
|
|
color: $white !important;
|
|
background-color: transparent !important;
|
|
border: 0 !important;
|
|
}
|
|
&.disabled > a, &.disabled > a:hover {
|
|
color: rgba($white, 0.5);
|
|
}
|
|
}
|
|
|
|
}
|