From fdb8cf9c89db74b27a1d336a97f6ab780ddeee57 Mon Sep 17 00:00:00 2001 From: Kevin Ross Date: Thu, 10 Dec 2015 08:13:50 -0600 Subject: [PATCH] Resolves #775 Snackbar transitions have invalid '0' values --- less/plugins/_plugin-snackbarjs.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/less/plugins/_plugin-snackbarjs.less b/less/plugins/_plugin-snackbarjs.less index 417284fa..ef0b3006 100644 --- a/less/plugins/_plugin-snackbarjs.less +++ b/less/plugins/_plugin-snackbarjs.less @@ -11,7 +11,7 @@ // Animation height: 0; - transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s; + transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, padding 0s linear 0.2s, height 0s linear 0.2s; transform: translateY(200%); } @@ -22,7 +22,7 @@ // Animation height: auto; - transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, height 0 linear 0.2s; + transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, height 0s linear 0.2s; transform: none; }