mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-09 17:25:38 +00:00
13 lines
176 B
SCSS
13 lines
176 B
SCSS
.p-tooltip {
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease-in-out;
|
|
|
|
& > .p-tooltip-text {
|
|
background-color: initial;
|
|
}
|
|
}
|
|
|
|
.p-tooltip.p-tooltip-active {
|
|
opacity: 1;
|
|
}
|