From 1d272eac38ebb310e360891a3a717447a1d0547a Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 26 Oct 2021 17:23:42 +0200 Subject: fix(animation): add fade-in animation to project details on large vw The animation was not triggered because I forgot to add the class in the right place. I also increase a little the animation timing. --- htdocs/src/scss/base/_animations.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'htdocs/src/scss') diff --git a/htdocs/src/scss/base/_animations.scss b/htdocs/src/scss/base/_animations.scss index 6da56b2..a2df8ab 100644 --- a/htdocs/src/scss/base/_animations.scss +++ b/htdocs/src/scss/base/_animations.scss @@ -65,11 +65,11 @@ } .fade-in { - animation: fadeIn 0.8s; + animation: fadeIn 1s; } .fade-out { - animation: fadeOut 0.8s; + animation: fadeOut 1s; } .slide-in--left { -- cgit v1.2.3