Merge pull request #4101 from thornbill/fix-dashboard-interaction

Fix pointer events not propogating to dashboard pages
This commit is contained in:
Bill Thornton
2022-10-25 13:43:56 -04:00
committed by GitHub
+6
View File
@@ -305,10 +305,16 @@
right: 0;
bottom: 0;
left: 0;
pointer-events: none;
[dir="rtl"] & {
transition: right ease-in-out 0.3s, padding ease-in-out 0.3s;
}
> .page {
// Fix pointer events being swallowed by the react root when a dashboard page is not rendered by react
pointer-events: all;
}
}
.centerMessage {