We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d173d commit 4a5064fCopy full SHA for 4a5064f
src/identity/components/GlobalHeader/UserPopoverStyles.scss
@@ -13,7 +13,7 @@
13
}
14
15
.user-popover {
16
- opacity: 0;
+ visibility: hidden;
17
position: absolute;
18
top: 60px;
19
right: 32px;
@@ -23,10 +23,10 @@
23
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
24
backdrop-filter: blur(42px);
25
border-radius: 2px;
26
- transition: opacity 0.1s ease-in-out;
+ transition: visibility 0.1s ease-in-out;
27
28
&.user-popover--open {
29
- opacity: 100;
+ visibility: visible;
30
31
32
.user-popover-header-email {
0 commit comments