aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2023-04-08 07:27:41 -0700
committerAnton Tananaev <anton@traccar.org>2023-04-08 07:27:41 -0700
commit19f468761b9611934949c7146680f2561259ebe9 (patch)
tree6bf3f223b9b4d0fbc1e4073dd8ccf6e8ed5bfdfb
parent009b1ed37fa2eb07a8faa3a0e1110c3d44584f10 (diff)
downloadtrackermap-web-19f468761b9611934949c7146680f2561259ebe9.tar.gz
trackermap-web-19f468761b9611934949c7146680f2561259ebe9.tar.bz2
trackermap-web-19f468761b9611934949c7146680f2561259ebe9.zip
Fix drawers zIndex (fix #1096)
-rw-r--r--modern/src/App.js2
-rw-r--r--modern/src/other/GeofencesPage.js1
2 files changed, 2 insertions, 1 deletions
diff --git a/modern/src/App.js b/modern/src/App.js
index 62f0d749..baa2c3f2 100644
--- a/modern/src/App.js
+++ b/modern/src/App.js
@@ -16,7 +16,7 @@ const useStyles = makeStyles(() => ({
overflow: 'auto',
},
menu: {
- zIndex: 1204,
+ zIndex: 4,
},
}));
diff --git a/modern/src/other/GeofencesPage.js b/modern/src/other/GeofencesPage.js
index 99626e49..a5917df9 100644
--- a/modern/src/other/GeofencesPage.js
+++ b/modern/src/other/GeofencesPage.js
@@ -34,6 +34,7 @@ const useStyles = makeStyles((theme) => ({
},
drawerPaper: {
position: 'relative',
+ zIndex: 0,
[theme.breakpoints.up('sm')]: {
width: theme.dimensions.drawerWidthTablet,
},