CoastalCommitsPastes/client/app/components/tooltip/tooltip.css

11 lines
134 B
CSS
Raw Normal View History

2022-11-12 21:39:03 -05:00
.tooltip {
/* animate */
animation: fadein 300ms;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}