nightTab/css/animation.css
2019-02-16 22:47:21 +00:00

10 lines
79 B
CSS

@keyframes appear {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}