make menu pane less wide

This commit is contained in:
Proddy
2023-05-07 17:49:58 +02:00
parent c8fd8c4928
commit db9b9992d6
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ import type { FC } from 'react';
import type { RequiredChildrenProps } from 'utils';
import { PROJECT_NAME } from 'api/env';
export const DRAWER_WIDTH = 240;
export const DRAWER_WIDTH = 210;
const Layout: FC<RequiredChildrenProps> = ({ children }) => {
const [mobileOpen, setMobileOpen] = useState(false);

View File

@@ -3,7 +3,7 @@ import { AppBar, Box, IconButton, Toolbar, Typography } from '@mui/material';
import LayoutAuthMenu from './LayoutAuthMenu';
import type { FC } from 'react';
export const DRAWER_WIDTH = 240;
export const DRAWER_WIDTH = 210;
interface LayoutAppBarProps {
title: string;