Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolankicks committed Dec 24, 2024
1 parent 5f79c5e commit c0e6d2c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/NameCard.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="flex w-full mt-6 pt-6 px-5 flex-col font-poppins items-center justify-center text-white bg-gradient-to-b from-blue-900 via-gray-900 to-black"
class="flex w-full mt-4 pt-6 px-5 flex-col font-poppins items-center justify-center text-white bg-gradient-to-b from-blue-900 via-gray-900 to-black"
>
<div
class="flex flex-col items-center justify-center gap-4 w-full max-w-3xl rounded-md animate-fadein"
Expand Down
2 changes: 1 addition & 1 deletion src/routes/blog/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</svelte:head>

<div class="w-full flex items-center justify-center animate-fadein">
<div class="max-w-3xl w-full my-5 mx-auto flex flex-col gap-4 pt-6 font-poppins px-5 text-white sm:px-0">
<div class="max-w-3xl w-full my-4 mx-auto flex flex-col gap-4 pt-6 font-poppins px-5 text-white sm:px-0">
<Header title="Blogs" HyperLink={false} />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/blog/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<base target="_blank" />

<div class="flex flex-col font-poppins w-full mx-auto px-5 py-6 mt-6 mb-6 sm:p-8 items-center justify-center">
<div class="flex flex-col font-poppins w-full mx-auto px-5 py-6 my-4 sm:p-8 items-center justify-center">
<div class="text-white text-shadow flex flex-col items-center justify-center">
<p class="text-white mb-5 text-5xl md:text-7xl sm:text-5xl font-bold sm:px-0 text-center font-poppins">
{data.blogPost.title}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/projects/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</svelte:head>

<div class="w-full flex items-center justify-center animate-fadein">
<div class="max-w-3xl w-full my-5 mx-auto flex flex-col gap-4 pt-6 font-poppins px-5 text-white sm:px-0">
<div class="max-w-3xl w-full my-4 mx-auto flex flex-col gap-4 pt-6 font-poppins px-5 text-white sm:px-0">
<Header title="Projects" HyperLink={false} />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/projects/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<base target="_blank" />

<div class="flex flex-col font-poppins w-full mx-auto px-5 py-6 mt-6 mb-6 sm:p-8 items-center justify-center">
<div class="flex flex-col font-poppins w-full mx-auto px-5 py-6 my-4 sm:p-8 items-center justify-center">
<div class="text-white text-shadow flex flex-col items-center justify-center">
<p class="text-white mb-5 text-5xl md:text-7xl sm:text-5xl font-bold sm:px-0 text-center font-poppins">
{data.project.title}
Expand Down

0 comments on commit c0e6d2c

Please sign in to comment.