aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-02-01 22:59:25 +0100
committerArmand Philippot <git@armandphilippot.com>2022-02-01 22:59:25 +0100
commiteeb9ea8d489c890a80c88658cb860577075ac660 (patch)
tree33248a5d1175c9b897b238796d68d28eaeed7ce2 /src/styles
parent01d578b6dd5252305ce3d1a1a49336d3f7edc697 (diff)
chore: animate main with fade in effect
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/base/_animations.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/styles/base/_animations.scss b/src/styles/base/_animations.scss
index 773bf1d..7dc0d25 100644
--- a/src/styles/base/_animations.scss
+++ b/src/styles/base/_animations.scss
@@ -136,3 +136,13 @@
color: var(--color-bg-tertiary);
}
}
+
+@keyframes fade-in {
+ 0% {
+ opacity: 0;
+ }
+
+ 100% {
+ opacity: 1;
+ }
+}