File size: 411 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
//
// Shadows
//
// General styles
[class*="shadow"] {
@if $enable-transitions {
transition: $transition-base;
}
}
// Size variations
.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;
}
|