aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/lib/animation.scss
diff options
context:
space:
mode:
Diffstat (limited to 'demo/src/sass/lib/animation.scss')
-rw-r--r--demo/src/sass/lib/animation.scss7
1 files changed, 5 insertions, 2 deletions
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;