From 788050246e2c34a5e23222fb819ee5fa70c6ee3b Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 17 Nov 2021 15:15:19 -0500 Subject: [PATCH] Fix fab click with high zIndex --- packages/core/ui/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/core/ui/App.tsx b/packages/core/ui/App.tsx index b6a9e747aa..036afd8dda 100644 --- a/packages/core/ui/App.tsx +++ b/packages/core/ui/App.tsx @@ -55,11 +55,13 @@ const useStyles = makeStyles(theme => ({ width: '100%', }, fabLeft: { + zIndex: 10000, position: 'fixed', bottom: theme.spacing(2), left: theme.spacing(2), }, fabRight: { + zIndex: 10000, position: 'fixed', bottom: theme.spacing(2), right: theme.spacing(2),