Skip to content

Commit f3bb9df

Browse files
committed
🐛 fix: mobile layout overlapping screen
1 parent 93f2dee commit f3bb9df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default function RootLayout({
5454
<Providers>
5555
<div className="flex flex-col min-h-screen">
5656
<Header />
57-
<main className="flex flex-col items-center justify-center flex-1 relative px-8 mt-20 mb-4 space-y-4">
57+
<main className="flex flex-col justify-center flex-1 relative px-8 mt-20 mb-4 space-y-4">
5858
{children}
5959
</main>
6060
<Footer />

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default async function Home() {
3535
<h4 className="text-sm font-medium leading-none px-3 py-3 h-9 mb-2 flex gap-2">
3636
Matérias <PencilRuler className="w-4 h-4" />{" "}
3737
{typeof period !== "string" && (
38-
<Badge>
38+
<Badge className="h-4">
3939
{period?.ano_letivo}/{period?.periodo_letivo}
4040
</Badge>
4141
)}

0 commit comments

Comments
 (0)