Skip to content

Commit 5394fbd

Browse files
committed
登録画面のmuiを削除
1 parent ca34f20 commit 5394fbd

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

web/app/signup/page.tsx

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"use client";
22

3-
import { Box } from "@mui/material";
43
import { useSnackbar } from "notistack";
54
import { useState } from "react";
65

@@ -78,19 +77,10 @@ function Registration() {
7877
export default function RegistrationPage() {
7978
return (
8079
<NavigateByAuthState type="toHomeForAuthenticated">
81-
<Box
82-
sx={{
83-
position: "absolute",
84-
top: "56px",
85-
bottom: 0,
86-
left: 0,
87-
right: 0,
88-
overflowY: "auto",
89-
}}
90-
>
80+
<div className="absolute top-14 right-0 bottom-0 left-0 overflow-y-auto">
9181
<Header title="登録/Register" />
9282
<Registration />
93-
</Box>
83+
</div>
9484
</NavigateByAuthState>
9585
);
9686
}

0 commit comments

Comments
 (0)