Files
cidwa-components/src/styles/sass/_hover.scss
T
2025-03-22 21:07:27 -05:00

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;
}
}
}
}