Added materialize sass

This commit is contained in:
Harry Bridge
2018-07-16 00:27:47 +01:00
parent 0e8a23733f
commit 116b228de3
84 changed files with 29714 additions and 0 deletions

View File

@@ -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;
}