fix: home page & logo style issue

This commit is contained in:
Martial BE 2024-01-13 14:26:09 +08:00
parent d062bc60e4
commit c63c9d479e
No known key found for this signature in database
GPG Key ID: D06C32DF0EDB9084
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ const MinimalLayout = () => {
<Header />
</Toolbar>
</AppBar>
<Box sx={{ flex: '1 1 auto', overflow: 'auto' }} paddingTop={'64px'}>
<Box sx={{ flex: '1 1 auto', overflow: 'auto' }} marginTop={'80px'}>
<Outlet />
</Box>
<Box sx={{ flex: 'none' }}>

View File

@ -15,7 +15,7 @@ import { useSelector } from 'react-redux';
const Logo = () => {
const siteInfo = useSelector((state) => state.siteInfo);
return <img src={siteInfo.logo || logo} alt={siteInfo.system_name} width="80" />;
return <img src={siteInfo.logo || logo} alt={siteInfo.system_name} height="50" />;
};
export default Logo;