CEC-5292: add battery info to fleet vehicles (#474)

* CEC-5292: add battery info to fleet vehicles

* add permission requirement

* set new message

* responsive

* fix missing status

* update snapshots

* update snapshots
This commit is contained in:
Tristan Timblin
2023-10-26 13:42:57 -07:00
committed by GitHub
parent 1059389d30
commit 342aa3e270
14 changed files with 269 additions and 24 deletions

View File

@@ -10,6 +10,11 @@ const useStyles = makeStyles((theme) => ({
alignItems: "center",
justifyContent: "center",
},
alignCenter: {
display: "flex",
justifyContent: "center",
width: "100%",
},
modaldialog: {
backgroundColor: theme.palette.background.paper,
border: "2px solid #000",
@@ -22,6 +27,9 @@ const useStyles = makeStyles((theme) => ({
flexDirection: "column",
alignItems: "center",
},
paperLeft: {
alignItems: "flex-start",
},
avatar: {
margin: theme.spacing(1),
backgroundColor: theme.palette.primary.main,
@@ -253,7 +261,7 @@ const useStyles = makeStyles((theme) => ({
padding: 15,
paddingBottom: 20,
},
textJustifyAlign: { textAlign: "justifyContent" },
textJustifyAlign: { textAlign: "justify-content" },
textCenterAlign: { textAlign: "center" },
textRightAlign: { textAlign: "right" },
fullWidth: { width: "100%" },