fix: 样式修改

This commit is contained in:
2025-08-01 00:12:24 -07:00
parent 513e68743e
commit dc910f12f8
7 changed files with 84 additions and 46 deletions
@@ -39,7 +39,7 @@ export default function NotifySettings() {
}
return (
<Card className='min-w-80 rounded-[20px] border border-[#D9D9D9] p-6 text-[#666666] shadow-[0px_0px_52.6px_1px_rgba(15,44,83,0.05)]'>
<Card className='flex h-full flex-col justify-between rounded-[20px] border border-[#D9D9D9] p-6 text-[#666666] shadow-[0px_0px_52.6px_1px_rgba(15,44,83,0.05)]'>
<div className={'mb-3'}>
<div className={'text-xl font-bold'}>{t('notify.notificationSettings')}</div>
<div className={'text-[15px] font-light'}></div>
@@ -4,12 +4,14 @@ import ThirdPartyAccounts from './third-party-accounts';
export default function Page() {
return (
<div className='flex flex-col gap-4 lg:flex-row lg:flex-wrap lg:*:flex-auto'>
<div className={'flex flex-auto flex-col gap-4'}>
<div className='flex flex-col gap-[30px] lg:flex-row lg:flex-wrap lg:*:flex-auto'>
<div className={'flex max-w-[543px] flex-auto flex-col gap-[30px]'}>
<ThirdPartyAccounts />
<ChangePassword />
</div>
<NotifySettings />
<div className={'lg:max-w-[195px]'}>
<NotifySettings />
</div>
</div>
);
}