Problem: Corner toasts.

Solution#

html
<div class="fixed bottom-4 right-4 z-50 flex flex-col gap-2">
  <div class="rounded-lg bg-slate-900 px-4 py-3 text-sm text-white shadow-xl">Saved ✓</div>
</div>

Why this works#

fixed bottom-right stack; animate in with translate + opacity.

Variants#

  • Responsive: add screen prefixes to the core classes
  • Dark: pair each color utility with its dark: twin
  • Animated: add transition + a state variant for motion

cookbook/index|Cookbook index · utilities/index|Utilities reference · patterns/index|Layout patterns