fix: 个人中心样式

This commit is contained in:
2025-07-30 21:09:25 -07:00
parent 0a34f95587
commit c1aa738154
8 changed files with 192 additions and 179 deletions
+6 -2
View File
@@ -59,7 +59,9 @@ export default function LoginForm({
<FormItem className={'mb-5'}>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
placeholder='Email'
type='email'
{...field}
@@ -76,7 +78,9 @@ export default function LoginForm({
<FormItem className={'mb-2'}>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
placeholder='password'
type='password'
{...field}
+13 -5
View File
@@ -102,7 +102,9 @@ export default function RegisterForm({
<FormItem>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
placeholder='Enter your email...'
type='email'
{...field}
@@ -119,7 +121,9 @@ export default function RegisterForm({
<FormItem>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
placeholder='Enter your password...'
type='password'
{...field}
@@ -136,7 +140,9 @@ export default function RegisterForm({
<FormItem>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
disabled={loading}
placeholder='Enter password again...'
type='password'
@@ -158,7 +164,7 @@ export default function RegisterForm({
<Input
disabled={loading}
className={
'h-[60px] flex-1 text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
'h-[60px] flex-1 rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
placeholder='Enter code...'
type='text'
@@ -186,7 +192,9 @@ export default function RegisterForm({
<FormItem>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
disabled={loading || !!localStorage.getItem('invite')}
placeholder={t('invite')}
{...field}
+9 -3
View File
@@ -65,7 +65,9 @@ export default function ResetForm({
<FormItem>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
placeholder='Enter your email...'
type='email'
{...field}
@@ -83,7 +85,9 @@ export default function ResetForm({
<FormControl>
<div className='flex items-center gap-8'>
<Input
className={'h-[60px] flex-1 text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] flex-1 rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
disabled={loading}
placeholder='Enter code...'
type='text'
@@ -110,7 +114,9 @@ export default function ResetForm({
<FormItem>
<FormControl>
<Input
className={'h-[60px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'}
className={
'h-[60px] rounded-[20px] text-xl shadow-[inset_0_0_7.6px_0_#00000040]'
}
placeholder='Enter your new password...'
type='password'
{...field}