Skip to content

Commit

Permalink
Minor styling changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jackreimers committed Jan 20, 2024
1 parent fc09c29 commit 7157456
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
8 changes: 5 additions & 3 deletions src/lib/components/layout/footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,20 @@

<footer class="mt-32">
<div class="flex w-full justify-center gap-3">
<Button classes="rounded-full bg-gray-100 p-4 hover:bg-gray-200">
<Button
classes="transform rounded-full bg-gray-100 p-4 transition-all hover:translate-y-[-5px] hover:bg-gray-200"
>
<Mail />
</Button>
<Button
href="https://www.linkedin.com/in/jackreimers/"
classes="rounded-full bg-gray-100 p-4 hover:bg-gray-200"
classes="transform rounded-full bg-gray-100 p-4 transition-all hover:translate-y-[-5px] hover:bg-gray-200"
>
<Linkedin />
</Button>
<Button
href="https://github.com/jackreimers"
classes="rounded-full bg-gray-100 p-4 hover:bg-gray-200"
classes="transform rounded-full bg-gray-100 p-4 transition-all hover:translate-y-[-5px] hover:bg-gray-200"
>
<Github />
</Button>
Expand Down
5 changes: 0 additions & 5 deletions src/lib/components/layout/header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@
<Button href="/" classes="p-2 hover:bg-gray-100">
<Home strokeWidth="3" />
</Button>
<!--
<Button onClick={() => {}}>
<Icon icon="dark_mode" classes="text-4xl text-gb" />
</Button>
-->
<Button onClick={() => {}} classes="p-2 hover:bg-gray-100">
<Menu strokeWidth="3" />
</Button>
Expand Down
6 changes: 3 additions & 3 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</p>
</div>
<div class="flex flex-col gap-4">
<Button href="blog" classes="group flex bg-gray-100 px-3.5 py-2.5">
<Button href="blog" classes="group flex bg-gray-100 px-3.5 py-2.5 hover:bg-gray-200">
<span class="flex flex-1 flex-col">
<span class="font-semibold">Blog</span>
<span class="text-sm text-gray-500">Read my latest posts.</span>
Expand All @@ -33,7 +33,7 @@
<MoveRight />
</span>
</Button>
<Button href="projects" classes="group flex bg-gray-100 px-3.5 py-2.5">
<Button href="projects" classes="group flex bg-gray-100 px-3.5 py-2.5 hover:bg-gray-200">
<span class="flex flex-1 flex-col">
<span class="font-semibold">Projects</span>
<span class="text-sm text-gray-500">See my past projects.</span>
Expand All @@ -44,7 +44,7 @@
<MoveRight />
</span>
</Button>
<Button href="about" classes="group flex bg-gray-100 px-3.5 py-2.5">
<Button href="about" classes="group flex bg-gray-100 px-3.5 py-2.5 hover:bg-gray-200">
<span class="flex flex-1 flex-col">
<span class="font-semibold">About</span>
<span class="text-sm text-gray-500">Learn more about me.</span>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</Button>
</div>
</div>
<div class="rounded bg-gray-50 p-4 md:flex-1">
<div class="rounded bg-gray-100 p-4 md:flex-1">
<p class="mb-5">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Posuere urna nec tincidunt praesent semper
Expand Down

0 comments on commit 7157456

Please sign in to comment.