Sidebar y styles

This commit is contained in:
jorgemike
2025-03-22 21:07:27 -05:00
parent a6a83fe65a
commit d4b896bba3
17 changed files with 808 additions and 61 deletions
+15
View File
@@ -0,0 +1,15 @@
// 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;
}
}
}
}