We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f85c68b commit f5d84caCopy full SHA for f5d84ca
src/app/(app)/(home)/page.tsx
@@ -90,7 +90,7 @@ const TwoColumnLayout = ({
90
rightContainerClassName?: string
91
}) => {
92
return (
93
- <div className="relative flex h-full w-full flex-col flex-wrap items-center lg:flex-row">
+ <div className="relative flex h-full w-full max-w-[1800px] flex-col flex-wrap items-center lg:flex-row">
94
{children.slice(0, 2).map((child, i) => {
95
96
<div
src/app/(app)/posts/(post-detail)/Container.tsx
@@ -1,6 +1,6 @@
1
export const Container: Component = ({ children }) => {
2
3
- <div className="container m-auto mt-[120px] max-w-7xl px-2 md:px-6 lg:p-0">
+ <div className="container m-auto mt-[120px] max-w-7xl px-2 md:px-6 lg:px-4 xl:px-0">
4
{children}
5
</div>
6
)
0 commit comments