Skip to content

Commit 0c6427a

Browse files
committed
fix: rename bird file and also responsive hero text size
1 parent 417c20a commit 0c6427a

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

src/App.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@
2828
<main class="flex flex-col justify-center items-center">
2929
<Clock />
3030
<MainBird />
31-
<h1 class="text-4xl text-center mt-5">
31+
<h1 class="text-2xl md:text-4xl text-center mt-5">
3232
hi, i'm jackson,<br />a software developer
3333
</h1>
34-
35-
<div class="h-500">content</div>
3634
</main>
3735
<div class="fixed bottom-0 w-full flex justify-center pb-1">
3836
<svg

src/lib/components/MainBird.svelte

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
5959
$effect(() => {
6060
updateTransform(angleX + angleY + scale);
61-
})
61+
});
6262
</script>
6363

6464
<div bind:this={mainBird} class="main-bird mt-50 select-none">
6565
<img
6666
bind:this={birdImg}
67-
src="/images/birb-bg-no-bg.svg"
67+
src="/images/birb-bw-no-bg.svg"
6868
alt="A monochrome, pixel-art bird"
6969
class="w-fit"
7070
/>
@@ -82,4 +82,3 @@
8282
pointer-events: none;
8383
}
8484
</style>
85-

0 commit comments

Comments
 (0)