Skip to content

Commit f5d84ca

Browse files
committed
fix: vertical container layout style
Signed-off-by: Innei <[email protected]>
1 parent f85c68b commit f5d84ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/(app)/(home)/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const TwoColumnLayout = ({
9090
rightContainerClassName?: string
9191
}) => {
9292
return (
93-
<div className="relative flex h-full w-full flex-col flex-wrap items-center lg:flex-row">
93+
<div className="relative flex h-full w-full max-w-[1800px] flex-col flex-wrap items-center lg:flex-row">
9494
{children.slice(0, 2).map((child, i) => {
9595
return (
9696
<div

src/app/(app)/posts/(post-detail)/Container.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const Container: Component = ({ children }) => {
22
return (
3-
<div className="container m-auto mt-[120px] max-w-7xl px-2 md:px-6 lg:p-0">
3+
<div className="container m-auto mt-[120px] max-w-7xl px-2 md:px-6 lg:px-4 xl:px-0">
44
{children}
55
</div>
66
)

0 commit comments

Comments
 (0)