Skip to content

Commit

Permalink
Prevent user menu from blocking header elements (#1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfalke authored Dec 3, 2024
1 parent d71f33f commit 561608e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/libs/web-common/src/App/UserMenu/UserMenu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,17 @@ $white: #e0e0e0;
.UserMenu-Pane {
opacity: 1;
transition: none;
top: 100%;
}
}
}

.UserMenu-Pane {
transition: opacity 500ms 1s;
transition: opacity 500ms 1s, top 0s 1s;
opacity: 0;

right: 0;
top: 100%;
top: -100000px;
color: black;
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 561608e

Please sign in to comment.