We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca34f20 commit 5394fbdCopy full SHA for 5394fbd
web/app/signup/page.tsx
@@ -1,6 +1,5 @@
1
"use client";
2
3
-import { Box } from "@mui/material";
4
import { useSnackbar } from "notistack";
5
import { useState } from "react";
6
@@ -78,19 +77,10 @@ function Registration() {
78
77
export default function RegistrationPage() {
79
return (
80
<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
- >
+ <div className="absolute top-14 right-0 bottom-0 left-0 overflow-y-auto">
91
<Header title="登録/Register" />
92
<Registration />
93
- </Box>
+ </div>
94
</NavigateByAuthState>
95
);
96
}
0 commit comments