Skip to content

Commit

Permalink
fix toolbar buttons alignment (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
siavol authored Sep 29, 2024
1 parent b676011 commit 6222b6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ const Layout: React.FunctionComponent = () => {
color="inherit"
component={RouterLink}
area-label="Configuration"
sx={{ display: { xs: 'none', sm: 'block' } }}
sx={{ display: { xs: 'none', sm: 'flex' } }}
>
{t('Configuration')}
</Button>
<IconButton
to="/config"
component={RouterLink}
color="inherit"
sx={{ display: { xs: 'block', sm: 'none' } }}
sx={{ display: { xs: 'flex', sm: 'none' } }}
>
<SettingsIcon />
</IconButton>
Expand Down

0 comments on commit 6222b6b

Please sign in to comment.