Skip to content

Commit 4a5064f

Browse files
fix(multi-org): Avatar Profile popover hide via visibility (#5481)
1 parent 38d173d commit 4a5064f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/identity/components/GlobalHeader/UserPopoverStyles.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414

1515
.user-popover {
16-
opacity: 0;
16+
visibility: hidden;
1717
position: absolute;
1818
top: 60px;
1919
right: 32px;
@@ -23,10 +23,10 @@
2323
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
2424
backdrop-filter: blur(42px);
2525
border-radius: 2px;
26-
transition: opacity 0.1s ease-in-out;
26+
transition: visibility 0.1s ease-in-out;
2727

2828
&.user-popover--open {
29-
opacity: 100;
29+
visibility: visible;
3030
}
3131

3232
.user-popover-header-email {

0 commit comments

Comments
 (0)