Skip to content

Commit

Permalink
fix: 로그인페이지에서 날씨탭 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunTaek5 committed Oct 27, 2023
1 parent d5a93b5 commit 0f248eb
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pages/login/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
import { Box, Grid } from '@mui/material';
import InfoBox from 'src/components/MainLayout/InfoBox';
import LoginBox from 'src/components/User/LoginBox';

export default function LoginPage() {
return (
<Box sx={{ width: '100%', height: '100vh', backgroundColor: '#F5F8FC' }}>
<Box
sx={{
width: '100%',
height: '100vh',
backgroundColor: '#F5F8FC',
paddingTop: '100px',
}}
>
<Grid container alignItems="center">
<Grid item xs={9}>
<div
Expand All @@ -16,9 +22,6 @@ export default function LoginPage() {
<LoginBox />
</div>
</Grid>
<Grid item xs={3}>
<InfoBox />
</Grid>
</Grid>
</Box>
);
Expand Down

0 comments on commit 0f248eb

Please sign in to comment.