15 lines
328 B
SCSS
15 lines
328 B
SCSS
// Clases personalizadas de hover por color
|
|
@each $name, $color in $theme-colors {
|
|
.hover-bg-#{$name} {
|
|
transition: background-color 0.4s;
|
|
|
|
&:hover,
|
|
&.active {
|
|
background-color: rgba($color, 0.75) !important;
|
|
.nav-link {
|
|
color: #ffffff !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|