From 69e20fc11381bdc94c416f11527289a34ffb89ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Fri, 11 Feb 2022 11:08:56 -0500 Subject: update from upstream --- demo/src/sass/lib/animation.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'demo/src/sass/lib/animation.scss') diff --git a/demo/src/sass/lib/animation.scss b/demo/src/sass/lib/animation.scss index cc18d59b..751b34c8 100644 --- a/demo/src/sass/lib/animation.scss +++ b/demo/src/sass/lib/animation.scss @@ -3,23 +3,26 @@ // ========================================================================== // Fade -@keyframes fadein { +@keyframes fade-in { 0% { opacity: 0; } + 100% { opacity: 1; } } -@keyframes shrinkHide { +@keyframes shrink-hide { 0% { opacity: 0.5; width: 38px; } + 20% { width: 45px; } + 100% { opacity: 0; width: 0; -- cgit v1.2.3