Skip to content

Commit

Permalink
Move icon to front in ProjectCard & Add margin bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitrrine committed Jul 7, 2024
1 parent e286d3c commit 177c936
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/projectCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<span
class="gap-4 flex flex-row items-center text-[color:var(--big-text-colour)] text-4xl sm:text-5xl font-bold"
>
{{ props.title }}
<!-- Icon -->
<img
class="h-12 bg-[var(--text-colour)] rounded-xl p-[2px]"
:src="props.icon"
/>
{{ props.title }}
</span>
<!-- Description -->
<div
Expand All @@ -21,7 +21,7 @@
{{ description }}
</div>
<!-- Buttons -->
<div class="flex mt-5 gap-3">
<div class="flex mb-5 gap-3">
<NuxtLink
v-for="(link, index) in urls"
:to="link"
Expand Down

0 comments on commit 177c936

Please sign in to comment.