fix: adjust padding in NormalContainer for improved layout

- Updated the top padding in the NormalContainer component to enhance spacing and visual consistency across different screen sizes.
- Ensured that the layout remains responsive and aligns with the overall design standards of the landing page.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2025-11-24 22:46:09 +08:00
parent d9a5be56e6
commit b6ec7886dd

View File

@@ -6,7 +6,7 @@ export const NormalContainer: Component = (props) => {
return (
<div
className={clsxm(
'mx-auto mt-14 max-w-3xl px-2 lg:mt-[80px] lg:px-0 2xl:max-w-4xl',
'mx-auto pt-14 max-w-3xl px-2 lg:pt-[80px] lg:px-0 2xl:max-w-4xl',
'[&_header.prose]:mb-[80px]',
className,
)}