Skip to content

Commit b482053

Browse files
committed
refactor: css
1 parent 4e5dac9 commit b482053

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

src/app/about/components/about-form.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ export default function AboutForm() {
5151
}, [error, getUser, success, user, loading]);
5252

5353
return (
54-
<div className="w-full max-w-xs">
54+
<div className="w-full h-full">
5555
{shouldOpenUpdateUserModal && <UpdateUserModal />}
5656
{shouldOpenDeleteAccountModal && <DeleteAccountModal />}
5757
{showLoading ? (
5858
<Loading />
5959
) : (
60-
<form className="bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4">
60+
<form className="w-full h-1/4 bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4">
6161
<Image
6262
alt="User profile image"
6363
src={(() => {

src/app/about/components/update-user-modal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default function UpdateUserModal() {
118118
>
119119
Update user
120120
</DialogTitle>
121-
<form className="bg-white shadow-md rounded px-8 pt-6 pb-8">
121+
<form className="w-full h-1/4 bg-white shadow-md rounded px-8 pt-6 pb-8">
122122
<Image
123123
alt="User profile image"
124124
src={(() => {

src/app/signin/components/sign-in-form.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ export default function LoginForm() {
7070
}
7171
}, [memoizedHandleSignIn, error, success]);
7272

73-
//<form className="bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4">
74-
7573
return (
7674
<div className="w-full h-full flex justify-center items-center">
7775
{shouldOpenForgetPasswordModal && <ForgetPasswordModal />}

src/app/signup/components/sign-up-form.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ export default function SignUpForm() {
106106
}, [error, success, memoizedHandleAfterSignUp]);
107107

108108
return (
109-
<div className="w-full max-w-xs">
110-
<form className="bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4">
109+
<div className="w-full h-full">
110+
<form className="w-full h-1/4 bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4">
111111
<Image
112112
alt="User profile image"
113113
src={(() => {
@@ -168,7 +168,7 @@ export default function SignUpForm() {
168168
value={user.password}
169169
/>
170170

171-
<div className="flex items-center justify-between">
171+
<div className="flex items-center justify-evenly">
172172
<ButtonForm
173173
disabled={showLoading}
174174
handleOnClick={handleFormSubmit}

0 commit comments

Comments
 (0)