diff --git a/src/components/client/layout/AppNavBar.tsx b/src/components/client/layout/AppNavBar.tsx index 044e870e6..43df340c9 100644 --- a/src/components/client/layout/AppNavBar.tsx +++ b/src/components/client/layout/AppNavBar.tsx @@ -80,30 +80,29 @@ export default function AppNavBar({ navMenuToggle }: AppBarDeckProps) { - - ({ - marginLeft: theme.spacing(2), - marginRight: theme.spacing(5), - [theme.breakpoints.up('lg')]: { - marginRight: theme.spacing(10), - }, - })}> - - - {status === 'authenticated' ? : } - - - - - + ({ + marginLeft: theme.spacing(2), + marginRight: theme.spacing(5), + [theme.breakpoints.up('lg')]: { + marginRight: theme.spacing(10), + }, + display: { md: 'flex', xs: 'none' }, + })}> + + + {status === 'authenticated' ? : } + + + + - - + + - + )