1
0
mirror of synced 2025-12-23 21:07:12 -05:00
Files
docs/stylesheets/shadows.scss
2021-04-22 15:04:33 +00:00

34 lines
593 B
SCSS

.hover-shadow {
/* & {
transition: box-shadow 0.3s ease-in-out;
&:hover {
box-shadow: var(--color-shadow-small) !important;
}
}
&-medium {
transition: box-shadow 0.3s ease-in-out;
&:hover {
box-shadow: var(--color-shadow-medium) !important;
}
} */
&-large {
transition: box-shadow 0.3s ease-in-out;
&:hover {
box-shadow: var(--color-shadow-large) !important;
}
}
/* &-extra-large {
transition: box-shadow 0.3s ease-in-out;
&:hover {
box-shadow: var(--color-shadow-extra-large) !important;
}
} */
}