Skip to content

Commit

Permalink
fix(theme): use pointer-events auto instead of all (#1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Sep 5, 2022
1 parent 8f66b42 commit 6fac5b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/theme-default/components/VPNavBar.vue
Expand Up @@ -101,7 +101,7 @@ const { hasSidebar } = useSidebar()
}
.container :deep(*) {
pointer-events: all;
pointer-events: auto;
}
.content {
Expand Down
2 changes: 1 addition & 1 deletion src/client/theme-default/components/VPNavScreen.vue
Expand Up @@ -52,7 +52,7 @@ function unlockBodyScroll() {
background-color: var(--vp-c-bg);
overflow-y: auto;
transition: background-color 0.5s;
pointer-events: all;
pointer-events: auto;
}
.VPNavScreen.fade-enter-active,
Expand Down

0 comments on commit 6fac5b2

Please sign in to comment.