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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/materialize-css/sass/components/_transitions.scss')
-rw-r--r--node_modules/materialize-css/sass/components/_transitions.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/node_modules/materialize-css/sass/components/_transitions.scss b/node_modules/materialize-css/sass/components/_transitions.scss
new file mode 100644
index 0000000000..9c3660aa82
--- /dev/null
+++ b/node_modules/materialize-css/sass/components/_transitions.scss
@@ -0,0 +1,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;
+} \ No newline at end of file