Skip to content

Commit

Permalink
Fix alert (#2233)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman committed Jul 24, 2024
1 parent 2b14a4d commit 5bc4a06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/holocene/alert.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</script>

<div
class={merge('alert', intent, className)}
class={merge('alert flex', intent, className)}
class:hidden
{role}
{...$$restProps}
Expand All @@ -64,7 +64,7 @@

<style lang="postcss">
.alert {
@apply flex items-start gap-2 break-words rounded-lg border-2 p-5 font-primary text-sm text-primary;
@apply items-start gap-2 break-words rounded-lg border-2 p-5 font-primary text-sm text-primary;
}
.alert.success {
Expand Down

0 comments on commit 5bc4a06

Please sign in to comment.