Tailwind

Alerts

Displays customizable alerts to attract attention and provide critical actions.

Source Page Source

Demo

Create an element with the .alert class. Wrap the alert in a Svelte #if statement to hide it or make it visible.

Sections

Message Content

Use the .alert-message to create a vertical set of text information that fills the available width of the alert.

html
<div class="alert-message">
	<h3 class="h3">(title)</h3>
	<p>{message}</p>
</div>
html
<h3 class="alert-message">(title)</h3>

Action Buttons

Use the .alert-actions to create a trailing area to house interactive action buttons.

html
<div class="alert-actions">(buttons)</div>

Animation

Svelte Transitions can provide smooth transition animations when the alert state changes.

html
<aside class="alert" transition:fade|local={{ duration: 200 }}>(content)</aside>