This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
shop/assets/scss/argon-design-system/utilities/shadows.scss
2023-11-10 15:57:52 +01:00

11 lines
348 B
SCSS

[class*="shadow"] {
@if $enable-transitions {
transition: $transition-base;
}
}
.shadow-sm--hover:hover { box-shadow: $box-shadow-sm !important; }
.shadow--hover:hover { box-shadow: $box-shadow !important; }
.shadow-lg--hover:hover { box-shadow: $box-shadow-lg !important; }
.shadow-none--hover:hover { box-shadow: none !important; }