We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41919b1 commit 182fe54Copy full SHA for 182fe54
src/lib/components/Callout.svelte
@@ -22,7 +22,7 @@
22
</script>
23
24
<Alert.Root class="mt-4" variant={type}>
25
- <svelte:component this={iconMap[type]} class="size-6" weight="bold" />
+ <svelte:component this={iconMap[type]} class="size-6 font-bold" />
26
27
{#if title}
28
<Alert.Title class="text-lg">
src/routes/(hq)/[id]/events/[eventId]/edit/edit-form.svelte
@@ -170,9 +170,9 @@
170
Cancel
171
</Button>
172
173
- {#if positions != event.positions}
+ {#if positions !== event.positions}
174
<div transition:fade class="mt-4 max-w-sm">
175
- <Alert.Root variant="destructive">
+ <Alert.Root variant="danger">
176
<AlertCircle class="h-4 w-4" />
177
<Alert.Title>Unsaved changes!</Alert.Title>
178
<Alert.Description>
0 commit comments