CoastalCommitsPastes/client/app/components/tooltip/tooltip.css
2022-11-12 18:39:03 -08:00

10 lines
134 B
CSS

.tooltip {
/* animate */
animation: fadein 300ms;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}