Minor styling update

This commit is contained in:
ZXY101
2023-09-28 07:55:16 +02:00
parent 9579c43a14
commit d190264c86
3 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<script lang="ts">
import { catalog } from '$lib/catalog';
import CatalogItem from './CatalogItem.svelte';
import Loader from './Loader.svelte';
</script>
{#if $catalog}
@@ -18,5 +19,5 @@
</div>
{/if}
{:else}
<p>Loading...</p>
<Loader>Fetching catalog...</Loader>
{/if}