aboutsummaryrefslogtreecommitdiff
path: root/modern
diff options
context:
space:
mode:
authorBoubrid Ihab <boubrid.ihab@gmail.com>2022-07-08 15:32:45 +0100
committerBoubrid Ihab <boubrid.ihab@gmail.com>2022-07-08 15:32:45 +0100
commit91b475e7824617b26d76303d6feba29e9c9cf995 (patch)
tree26094db68d710df7cd227099ce39c79892558c08 /modern
parent95098bce72047b0635ba864da281d8e9934c8d54 (diff)
downloadtrackermap-web-91b475e7824617b26d76303d6feba29e9c9cf995.tar.gz
trackermap-web-91b475e7824617b26d76303d6feba29e9c9cf995.tar.bz2
trackermap-web-91b475e7824617b26d76303d6feba29e9c9cf995.zip
fix: replace dimensions with theme.dimensions
Diffstat (limited to 'modern')
-rw-r--r--modern/src/settings/components/CollectionFab.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/settings/components/CollectionFab.js b/modern/src/settings/components/CollectionFab.js
index 4bbafe30..6aac68b5 100644
--- a/modern/src/settings/components/CollectionFab.js
+++ b/modern/src/settings/components/CollectionFab.js
@@ -11,7 +11,7 @@ const useStyles = makeStyles((theme) => ({
bottom: theme.spacing(2),
right: theme.spacing(2),
[theme.breakpoints.down('md')]: {
- bottom: parseInt(dimensions.bottomBarHeight, 10) + parseInt(theme.spacing(2), 10),
+ bottom: parseInt(theme.dimensions.bottomBarHeight, 10) + parseInt(theme.spacing(2), 10),
},
},
}));