mixin.scss 259 B

12345678910
  1. @mixin shadow{
  2. box-shadow: none;
  3. transition: 0.3s transform ease, 0.3s box-shadow ease;
  4. &:hover{
  5. transform: scale(1.05);
  6. box-shadow: 0px 0px 13px 0px $color2024;
  7. transition: 0.3s transform ease, 0.3s box-shadow ease;
  8. }
  9. }