mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-08-18 05:15:59 +00:00
refactor: add transition to tooltips
This commit is contained in:
parent
c0f3e04036
commit
922ef054e4
2 changed files with 3 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -13,8 +13,10 @@
|
|||
.tooltip-container {
|
||||
position: fixed;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
|
||||
&:global(.active) {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue