Skip to content

Commit

Permalink
fix: set pointer-events to none when settings menu is not visible (#255)
Browse files Browse the repository at this point in the history
Co-authored-by: Yassine Doghri <[email protected]>
  • Loading branch information
yassinedoghri and Yassine Doghri authored Oct 10, 2021
1 parent a898432 commit ab19d01
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
.settings {
position: absolute;
opacity: 0;
pointer-events: auto;
pointer-events: none;
overflow-x: hidden;
overflow-y: auto;
background-color: var(--vm-menu-bg);
Expand Down Expand Up @@ -68,6 +68,7 @@
.settings.active {
transform: translateY(0);
opacity: 1;
pointer-events: auto;
visibility: visible !important;
}

Expand Down

0 comments on commit ab19d01

Please sign in to comment.