From 30418d0ffe04760cbc01b25f54e0ad26b04f956f Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 19 Apr 2023 21:14:45 +0100 Subject: [PATCH] Makes templates into clickable links --- src/lib/TemplateList.svelte | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/lib/TemplateList.svelte b/src/lib/TemplateList.svelte index a9d2a9c..c1615f8 100644 --- a/src/lib/TemplateList.svelte +++ b/src/lib/TemplateList.svelte @@ -1,10 +1,15 @@
{#each templates as template} - + {/each}
@@ -35,6 +40,8 @@ section.templates { gap: 1rem; transition:all 0.3s ease-in-out; max-width: 28rem; + text-decoration: none; + color: var(--foreground); &:hover { box-shadow: var(--shadow); }