Preparacion del proyecto

This commit is contained in:
jorgemike
2025-04-01 09:50:01 -06:00
parent 94b752df72
commit 37bf6a6396
37 changed files with 1914 additions and 320 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;
}
}
}
}