Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_transitions.scss « components « sass « materialize-css « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c3660aa82de6e0f8a032d0b47a4e9870f1fb179 (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;
}