ソースを参照

Login Page Update

reset-do-picking-order
B.E.N.S.O.N 5日前
コミット
c5d79de697
1個のファイルの変更10行の追加3行の削除
  1. +10
    -3
      src/components/LoginPage/LoginPage.tsx

+ 10
- 3
src/components/LoginPage/LoginPage.tsx ファイルの表示

@@ -7,7 +7,7 @@ import { Box } from "@mui/material";

const LoginPage = () => {
return (
<Grid container height="100vh">
<Grid container sx={{ minHeight: "100vh" }}>
<Grid
item
xs={0}
@@ -34,7 +34,14 @@ const LoginPage = () => {
}}
/>
</Grid>
<Grid item xs={12} sm={8} md={7} lg={6}>
<Grid
item
xs={12}
sm={8}
md={7}
lg={6}
sx={{ display: "flex", flexDirection: "column", minHeight: "100vh" }}
>
<Box
sx={{
width: "100%",
@@ -49,7 +56,7 @@ const LoginPage = () => {
>
<Logo height={42} />
</Box>
<Paper square sx={{ height: "100%" }}>
<Paper square sx={{ flex: 1 }}>
<LoginForm />
</Paper>
</Grid>


読み込み中…
キャンセル
保存