problem: style is not uniform

This commit is contained in:
gsovereignty
2024-07-16 12:37:14 +08:00
parent c1974378fb
commit 931520acf6
272 changed files with 2396 additions and 2470 deletions

View File

@@ -1,20 +1,19 @@
<script lang="ts">
import Terminal from 'lucide-svelte/icons/terminal';
import * as Alert from '$lib/components/ui/alert/index.js';
export let text:string[];
export let text: string[];
</script>
<Alert.Root>
<Terminal class="h-4 w-4" />
<Alert.Title>Todo:</Alert.Title>
<Alert.Description>
{#if text.length > 1}
<ul class="list-disc">
{#each text as t}<li>{t}</li>{/each}
</ul>
{:else}
{text}
{/if}
</Alert.Description>
{#if text.length > 1}
<ul class="list-disc">
{#each text as t}<li>{t}</li>{/each}
</ul>
{:else}
{text}
{/if}
</Alert.Description>
</Alert.Root>