update web

This commit is contained in:
nikk gitanes
2021-07-17 11:29:34 +03:00
parent 1baff783dd
commit 4298a286e8
10 changed files with 71 additions and 71 deletions

View File

@@ -64,10 +64,10 @@ export default function App() {
<AppWrapper>
<AppHeader>
<IconButton
style={{ marginRight: '6px' }}
edge='start'
color='inherit'
onClick={() => setIsDrawerOpen(!isDrawerOpen)}
edge='start'
style={{ marginRight: '6px' }}
>
{isDrawerOpen ? <CloseIcon /> : <MenuIcon />}
</IconButton>

View File

@@ -6,7 +6,7 @@ import { useTranslation } from 'react-i18next'
const useStyles = makeStyles(theme => ({
appBar: { position: 'relative' },
title: { marginLeft: theme.spacing(2), flex: 1 },
title: { marginLeft: '6px', flex: 1 },
}))
export default function DialogHeader({ title, onClose, onBack }) {