Skip to content

Commit

Permalink
新規登録ダイアログを画面中央に
Browse files Browse the repository at this point in the history
  • Loading branch information
narumincho committed Jul 7, 2024
1 parent bd2f2b6 commit a50e996
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
13 changes: 12 additions & 1 deletion client/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ export const App = (props: {
gap: 16,
}}
>
<h1>definy</h1>
<h1
style={{
margin: 0,
padding: 16,
}}
>
definy
</h1>
<button
type="button"
onClick={() => {
Expand All @@ -38,6 +45,10 @@ export const App = (props: {
style={{
width: "80%",
boxShadow: "0px 20px 36px 0px rgba(0, 0, 0, 0.6)",
position: "absolute",
left: "50%",
top: "50%",
transform: "translate(-50%, -50%)",
}}
>
<form
Expand Down
Loading

0 comments on commit a50e996

Please sign in to comment.