fix: Set visibility of popovers, so they do not appear when hovering over the hidden pseudoelement

This commit is contained in:
Don McCurdy 2023-03-14 09:38:39 -07:00
parent 05094e2fd9
commit 6cd04adbc7

View file

@ -10,7 +10,8 @@
&:hover {
&::after {
opacity: 1;
transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out, visibility 0s linear 0s;
visibility: visible;
}
}
@ -32,6 +33,8 @@
text-align: center;
top: -6px;
transform: translateX(-50%) translateY(-100%);
transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
visibility: hidden;
}
}