mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
13 lines
263 B
SCSS
13 lines
263 B
SCSS
|
// 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;
|
||
|
}
|