🛠 Fix search input & layout improvements.

This commit is contained in:
Pablo Hdez
2023-03-17 14:00:17 +00:00
parent f22adb1218
commit 148bccc5ce
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
<script>
<script lang="ts">
// Global styles:
import '../app.css';
@@ -31,7 +31,7 @@
<div class="mb-3 flex flex-col space-y-1 border-b border-neutral-700/40 pb-3">
{#each categories as category}
<a
href={`/category/${category.toLowerCase()}`}
href={`/directory/${category.toLowerCase()}`}
class="flex w-full items-center rounded-md p-2 transition-all duration-100 hover:bg-neutral-700/40"
>{category}</a
>