mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-11 02:05:58 +00:00
15 lines
150 B
SCSS
15 lines
150 B
SCSS
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.tooltip {
|
|
animation: fadeIn 0.3s ease-in-out;
|
|
|
|
font-size: 12px;
|
|
}
|