瀏覽代碼

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>


Loading…
取消
儲存