diff options
author | Anton Tananaev <anton@traccar.org> | 2023-08-20 07:36:39 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-08-20 07:36:39 -0700 |
commit | aec9d7eeee98fa415ff425f7f36fe0ef9a799d37 (patch) | |
tree | 257c918d18b9f0d5bbdbbdee7fe126432f1f77b4 | |
parent | a5fbacbe37184c845731b6a6d69eb4dc4ac1b2e9 (diff) | |
download | trackermap-web-aec9d7eeee98fa415ff425f7f36fe0ef9a799d37.tar.gz trackermap-web-aec9d7eeee98fa415ff425f7f36fe0ef9a799d37.tar.bz2 trackermap-web-aec9d7eeee98fa415ff425f7f36fe0ef9a799d37.zip |
Card overflow auto
-rw-r--r-- | modern/src/common/components/StatusCard.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/common/components/StatusCard.jsx b/modern/src/common/components/StatusCard.jsx index c389636c..0d32eb0d 100644 --- a/modern/src/common/components/StatusCard.jsx +++ b/modern/src/common/components/StatusCard.jsx @@ -58,7 +58,7 @@ const useStyles = makeStyles((theme) => ({ paddingTop: theme.spacing(1), paddingBottom: theme.spacing(1), maxHeight: theme.dimensions.cardContentMaxHeight, - overflow: 'scroll', + overflow: 'auto', }, negative: { color: theme.palette.colors.negative, |