Skip to content

Commit

Permalink
Merge pull request #37 from Sea10wood/feature/#2-signin_page
Browse files Browse the repository at this point in the history
fix the sign in button and sign up button
  • Loading branch information
Sea10wood authored May 21, 2023
2 parents 8d4802a + 4fbfa96 commit 3c8ffc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Signinbutton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useState } from "react";

export default function SigninButton() {
return (
<h2 style={{
<Typography style={{
textAlign: "center",}}>
<Box component="div" p={2} >
<Button
Expand All @@ -24,6 +24,6 @@ export default function SigninButton() {
sign in
</Button>
</Box>
</h2>
</Typography>
);
}
4 changes: 2 additions & 2 deletions src/pages/signin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const Signin = () => {
name="password"
/>
</Stack>
<h2 style={{ textAlign: "center" }}>
<Typography style={{ textAlign: "center" }}>
<Box component="div" p={2}>
<Button
onClick={handleSubmit}
Expand All @@ -103,7 +103,7 @@ const Signin = () => {
送信
</Button>
</Box>
</h2>
</Typography>
</Stack>
</Paper>
</Box>
Expand Down

0 comments on commit 3c8ffc4

Please sign in to comment.