From f09cddff75acb1042488ea710c921c606941c37d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9CSalar?= <“salar.sali97@gmail.com”>
Date: Wed, 12 Oct 2022 11:43:49 +0300
Subject: [PATCH] The style of the children has been modified

---
 src/components/BaseLayout.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/BaseLayout.tsx b/src/components/BaseLayout.tsx
index 2c143c9..a770fce 100644
--- a/src/components/BaseLayout.tsx
+++ b/src/components/BaseLayout.tsx
@@ -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>