fix logo on mobile devices

This commit is contained in:
Proddy
2023-04-30 20:25:04 +02:00
parent bf5c11156a
commit c34208c3df

View File

@@ -6,6 +6,10 @@ import type { FC } from 'react';
import { PROJECT_NAME } from 'api/env';
const LayoutDrawerLogo = styled('img')(({ theme }) => ({
[theme.breakpoints.down('sm')]: {
height: 24,
marginRight: theme.spacing(2)
},
[theme.breakpoints.up('sm')]: {
height: 38,
marginRight: theme.spacing(2)