Skip to content

Commit ec4fa5f

Browse files
committed
fix: added padding top to header & setup vercel
1 parent 2dfe127 commit ec4fa5f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ dist-ssr
2323
*.sln
2424
*.sw?
2525
.vercel
26+
27+
.vercel

src/pages/Index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const Index = () => {
77
const { isRTL } = useLanguage();
88

99
return (
10-
<div className={`flex min-h-screen flex-col ${isRTL ? 'rtl' : 'ltr'}`}>
10+
<div className={`flex min-h-screen flex-col pt-4 ${isRTL ? 'rtl' : 'ltr'}`}>
1111
<Header />
1212
<DocumentViewer className="yaqiin-container flex-grow animate-fade-in py-6" />
1313
<Footer />

0 commit comments

Comments
 (0)