Update animation scale

This commit is contained in:
d3vyce 2022-08-31 23:14:41 +02:00
parent cbf02a3fdd
commit 6fc5596087

View File

@ -255,7 +255,7 @@ a:hover {
}
/* ------------ */
/* Animation */
.reveal{
position: relative;
opacity: 0;
@ -271,11 +271,12 @@ a:hover {
@keyframes fade {
0% {
transform: scale(0.8, 0.8);
transform: scale(0.9, 0.9);
opacity: 0;
}
100% {
transform: scale(1, 1);
opacity: 1;
}
}
}
/* ------------ */