minor tweaks

This commit is contained in:
Olivier Gagnon 2021-09-18 02:11:20 -04:00
parent 425c998435
commit eacf15b463
2 changed files with 2 additions and 1 deletions

@ -74,7 +74,7 @@ export function WorkerScriptAccordion(props: IProps): React.ReactElement {
<>
<ListItemButton onClick={() => setOpen((old) => !old)} component={Paper}>
<ListItemText primary={<Typography> {props.workerScript.name}</Typography>} />
{open ? <ExpandLess /> : <ExpandMore />}
{open ? <ExpandLess color="primary" /> : <ExpandMore color="primary" />}
</ListItemButton>
<Collapse in={open} timeout={0} unmountOnExit>
<Box mx={6}>

@ -68,6 +68,7 @@ export const theme = createTheme({
dark: colors.warningdark,
},
background: {
default: colors.black,
paper: colors.well,
},
},