Commit 103cb4e0 by t0ng7u

💄 style(topup): align container width with PersonalSetting (w-full max-7xl)

- Set TopUp page outer wrapper to "w-full max-w-7xl mx-auto px-2"
  to match PersonalSetting and ensure consistent layout width and padding.
- No functional changes; UI-only adjustment.
- Lint checks passed.
- Verified that pages/TopUp only re-exports the component (no extra wrapper).

Affected: web/src/components/topup/index.jsx
parent eddaebf7
...@@ -449,7 +449,7 @@ const TopUp = () => { ...@@ -449,7 +449,7 @@ const TopUp = () => {
}; };
return ( return (
<div className='mx-auto relative min-h-screen lg:min-h-0 mt-[60px] px-2'> <div className='w-full max-w-7xl mx-auto relative min-h-screen lg:min-h-0 mt-[60px] px-2'>
{/* 划转模态框 */} {/* 划转模态框 */}
<TransferModal <TransferModal
t={t} t={t}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment