From e3fba3dcd493f609e107435867c4a67cb7ee420f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 21 Nov 2020 14:13:41 +0100 Subject: import materialize sass sources instead of relying on npm --- sass/components/_transitions.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sass/components/_transitions.scss (limited to 'sass/components/_transitions.scss') diff --git a/sass/components/_transitions.scss b/sass/components/_transitions.scss new file mode 100644 index 0000000..cb9f60d --- /dev/null +++ b/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 -- cgit v1.2.3