fix(theme): use pointer-events auto instead of all (#1290)

pull/1295/head
Divyansh Singh 2 years ago committed by GitHub
parent 8f66b42a0b
commit 6fac5b2964
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -101,7 +101,7 @@ const { hasSidebar } = useSidebar()
} }
.container :deep(*) { .container :deep(*) {
pointer-events: all; pointer-events: auto;
} }
.content { .content {

@ -52,7 +52,7 @@ function unlockBodyScroll() {
background-color: var(--vp-c-bg); background-color: var(--vp-c-bg);
overflow-y: auto; overflow-y: auto;
transition: background-color 0.5s; transition: background-color 0.5s;
pointer-events: all; pointer-events: auto;
} }
.VPNavScreen.fade-enter-active, .VPNavScreen.fade-enter-active,

Loading…
Cancel
Save