Skip to content

Commit 593a8c0

Browse files
committed
increased border radius for cards
1 parent 3d97b66 commit 593a8c0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/components/About.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<li>
1212
🔭 I'm working on <a
1313
href="https://github.com/aidantomcy/pymon"
14-
class="underline"
14+
class="underline decoration-wavy"
1515
target="_blank">pymon</a
1616
>
1717
</li>

src/components/Card.svelte

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@
66
</script>
77

88
<div
9-
class="rounded-2xl list-none flex bg-gray-200 dark:bg-dark-secondary hover:scale-[1.01] w-full transition-all my-2 text-gray-900 dark:text-gray-200 dark:hover:text-white px-4 py-6 md:h-52 lg:h-56 lg:py-4 md:w-[96%]"
9+
class="rounded-[2rem] list-none flex bg-gray-200 dark:bg-dark-secondary hover:scale-[1.01] w-full transition-all my-2 text-gray-900 dark:text-gray-200 dark:hover:text-white px-6 py-4 md:h-52 lg:h-56 lg:py-6 md:w-[96%]"
1010
>
1111
<a
1212
href={`https://github.com/aidantomcy/${repo}`}
1313
class="w-full leading-5 p-1 opacity-80"
1414
target="_blank"
1515
>
16-
<h2 class="pb-2 m-0 text-xl">
17-
{title}
16+
<div class="flex gap-1">
17+
<h2 class="pb-2 m-0 text-xl underline decoration-wavy">
18+
{title}
19+
</h2>
1820
<ArrowUpRight />
19-
</h2>
21+
</div>
2022
<p class="mt-2 mb-0 overflow-ellipsis">
2123
{body}
2224
</p>

src/components/Intro.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<img
1010
src="/aidan.webp"
1111
alt="aidan tomcy"
12-
class="size-40 rounded-2xl lg:size-48"
12+
class="size-40 rounded-[2rem] lg:size-48"
1313
/>
1414
</div>
1515
</section>

0 commit comments

Comments
 (0)