Skip to content

Commit bb42a33

Browse files
committed
delete typo home
1 parent 3b228bf commit bb42a33

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

web/app/home/layout.tsx

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { Box } from "@mui/material";
21
import BottomBar from "~/components/BottomBar";
32
import Header from "~/components/Header";
43

@@ -10,21 +9,9 @@ export default function HomePageLayout({
109
return (
1110
<>
1211
<Header title="ホーム/Home" />
13-
<Box
14-
sx={{
15-
position: "absolute", // TODO: absolute 指定しない
16-
top: {
17-
xs: "56px",
18-
sm: "64px",
19-
},
20-
bottom: "56px",
21-
left: 0,
22-
right: 0,
23-
overflowY: "auto",
24-
}}
25-
>
12+
<div className="relative top-14 right-0 bottom-14 left-0 overflow-y-auto sm:top-16">
2613
{children}
27-
</Box>
14+
</div>
2815
<BottomBar activeTab="0_home" />
2916
</>
3017
);

0 commit comments

Comments
 (0)