1
0
Fork 0

Make / fade in

This commit is contained in:
Moritz Ruth 2020-08-08 18:40:25 +02:00
parent 5babe2767b
commit 5bc19ea5c0
No known key found for this signature in database
GPG key ID: AFD57E23E753841B
2 changed files with 13 additions and 2 deletions

View file

@ -45,6 +45,18 @@
background: colors.$background;
color: colors.$background-c;
width: 100vw;
animation: 4s ease both fade-in;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.index-page__background {