Add selector an animation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Siklos 2022-08-04 00:22:39 +02:00
parent d959945da7
commit 767afb230d
2 changed files with 7 additions and 2 deletions

View file

@ -16,4 +16,9 @@ text {
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}