aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/src/scss/base/_animations.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-10-26 17:23:42 +0200
committerArmand Philippot <git@armandphilippot.com>2021-10-26 17:23:42 +0200
commit1d272eac38ebb310e360891a3a717447a1d0547a (patch)
tree40cb4ccea0aa41272d40a2d8ff5a4224905cf699 /htdocs/src/scss/base/_animations.scss
parent9f24f7421860a0ca14aa63f551797979e8dc1bf9 (diff)
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.
Diffstat (limited to 'htdocs/src/scss/base/_animations.scss')
-rw-r--r--htdocs/src/scss/base/_animations.scss4
1 files changed, 2 insertions, 2 deletions
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 {