Skip to content

Commit b669771

Browse files
committed
fix(app): Fixed Image sizing
1 parent 06036d4 commit b669771

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/pages/404.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ import { Image } from "astro:assets";
1212
</Head>
1313
<body class="bg-primary">
1414
<Navbar />
15-
<main class="grid w-full h-[85vh] place-content-center text-light">
15+
<main class="flex flex-col text-light items-center px-5">
1616
<Image
1717
src={CUNE_LOGO}
1818
alt="CUNE Logo"
1919
width={CUNE_LOGO.width}
2020
height={CUNE_LOGO.height}
21+
loading="eager"
22+
decoding="sync"
2123
/>
2224
<h1 class="text-6xl font-bold tracking-wide text-center italic">
2325
Uh Oh.
@@ -27,7 +29,7 @@ import { Image } from "astro:assets";
2729
back later!
2830
</p>
2931
<a
30-
class="bg-light text-dark py-3 px-5 rounded hover:bg-accent active:scale-95 transition-all duration-200 mx-auto text-6xl text-center font-bold tracking-wide mt-5"
32+
class="bg-light text-dark py-3 px-5 rounded hover:bg-accent active:scale-95 transition-all duration-200 mx-auto text-6xl text-center font-bold tracking-wide mt-12"
3133
href="/">Back</a
3234
>
3335
</main>

0 commit comments

Comments
 (0)