CEC-381 Install messages and update styling (#76)

* Styling

* Handle install messages

* Update progress

* Display download and install status
This commit is contained in:
John Wu
2021-08-10 18:11:14 -07:00
committed by GitHub
parent 7cb9d39bbd
commit 2b95bab38b
8 changed files with 477 additions and 403 deletions

View File

@@ -45,7 +45,7 @@ const useStyles = makeStyles((theme) => ({
},
labelInline: {
fontSize: "1.25em",
margin: theme.spacing(2, 1, 1),
margin: theme.spacing(4, 1, 1),
display: "inline-flex",
boxSizing: "border-box",
verticalAlign: "bottom",
@@ -77,6 +77,8 @@ const useStyles = makeStyles((theme) => ({
easing: theme.transitions.easing.sharp,
duration: theme.transitions.duration.leavingScreen,
}),
color: "black",
backgroundColor: "white",
},
appBarShift: {
width: `calc(100% - ${DRAWER_WIDTH}px)`,
@@ -107,6 +109,9 @@ const useStyles = makeStyles((theme) => ({
...theme.mixins.toolbar,
justifyContent: "flex-start",
},
drawerHeaderLogo: {
backgroundColor: "#3f51b5",
},
content: {
flexGrow: 1,
padding: theme.spacing(3),