CoastalCommitsPastes/client/app/components/fade-in/fade.module.css

16 lines
214 B
CSS
Raw Normal View History

@media (prefers-reduced-motion: no-preference) {
.fadeIn {
animation-name: fadeInAnimation;
animation-fill-mode: backwards;
}
}
@keyframes fadeInAnimation {
from {
opacity: 0;
}
to {
opacity: 1;
}
}