No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_shadows.scss 411B

12345678910111213141516171819202122232425262728
  1. //
  2. // Shadows
  3. //
  4. // General styles
  5. [class*="shadow"] {
  6. @if $enable-transitions {
  7. transition: $transition-base;
  8. }
  9. }
  10. // Size variations
  11. .shadow-sm--hover:hover {
  12. box-shadow: $box-shadow-sm !important;
  13. }
  14. .shadow--hover:hover {
  15. box-shadow: $box-shadow !important;
  16. }
  17. .shadow-lg--hover:hover {
  18. box-shadow: $box-shadow-lg !important;
  19. }
  20. .shadow-none--hover:hover {
  21. box-shadow: none !important;
  22. }