fix: add responsive for blog preview mobile view (#906)

This Issue https://github.com/documenso/documenso/issues/904
This commit is contained in:
rajesh
2024-02-06 11:15:46 +05:30
committed by GitHub
parent 0c339b78b6
commit fe4345eeb9

View File

@ -41,7 +41,7 @@ export default function MarketingLayout({ children }: MarketingLayoutProps) {
<Header className="mx-auto h-16 max-w-screen-xl px-4 md:h-20 lg:px-8" />
</div>
<div className="relative mx-auto max-w-screen-xl flex-1 px-4 lg:px-8">{children}</div>
<div className="relative max-w-screen-xl flex-1 px-4 sm:mx-auto lg:px-8">{children}</div>
<Footer className="bg-background border-muted mt-24 border-t" />
</div>