The style of the children has been modified

This commit is contained in:
“Salar 2022-10-12 11:43:49 +03:00
parent 43a73bc538
commit f09cddff75

View File

@ -13,7 +13,7 @@ function BaseLayout({ header, footer, children, className }: Props) {
<div className={className}>
<Header />
<main>{children}</main>
<main className="h-screen skewed:h-auto pt-5">{children}</main>
<Footer />
</div>