summaryrefslogtreecommitdiff
path: root/sass/components/_transitions.scss
blob: cb9f60db7495146f053b3365dffda6bfb5373d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Scale transition
.scale-transition {
  &.scale-out {
    transform: scale(0);
    transition: transform .2s !important;
  }

  &.scale-in {
    transform: scale(1);
  }

  transition: transform .3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important;
}