Skip to content

Commit

Permalink
fix: frontpage responsivenes
Browse files Browse the repository at this point in the history
  • Loading branch information
ajesuscode committed Oct 17, 2023
1 parent 78391a0 commit fa07241
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default async function RootLayout({
<div>
<Navbar user={user} />
</div>
<main className="h-screen w-screen">{children}</main>
<main className="min-h-screen w-screen">{children}</main>
</body>
</html>
);
Expand Down
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default async function Home() {
<main className="flex min-h-screen flex-col items-center justify-center gap-4 p-2">
<Image
src={pintxos_lg}
width={180}
width={150}
alt="surf_pintxos_logo"
quality={100}
/>
Expand All @@ -29,7 +29,7 @@ export default async function Home() {
Surf forecast for all Pays Basque spots
</p>
<Link href="/spots">
<button className="w-72 p-4 rounded-md bg-secondary text-primary hover:bg-light hover:text-dark">
<button className="w-72 p-4 rounded-md bg-secondary text-primary hover:bg-light hover:text-dark font-body">
Check Pintxos
</button>
</Link>
Expand Down

0 comments on commit fa07241

Please sign in to comment.