refactor: add transition to tooltips

This commit is contained in:
Tim 2023-10-17 10:42:47 +02:00
parent c0f3e04036
commit 922ef054e4
2 changed files with 3 additions and 0 deletions

View file

@ -126,6 +126,7 @@ html {
color: var(--primary-foreground-color);
border-radius: var(--border-radius);
background-color: var(--modal-background-color);
transition: opacity 0.25s ease-out;
}
.router {

View file

@ -13,8 +13,10 @@
.tooltip-container {
position: fixed;
visibility: hidden;
opacity: 0;
&:global(.active) {
visibility: visible;
opacity: 1;
}
}