Skip to content

Callout

Info and warning boxes for supplementary content.


Classes

ClassPurpose
.calloutBase flex container with gap, padding, radius
.callout--infoInfo variant — blue background and border
.callout--warningWarning variant — yellow background and border

Info Callout

ℹ️

This is an informational callout using .callout--info.

Warning Callout

⚠️

This is a warning callout using .callout--warning.


Usage

html
<div class="callout callout--info" role="note">
  <span aria-hidden="true">&#x2139;&#xFE0F;</span>
  <p>Informational message here.</p>
</div>

<div class="callout callout--warning" role="note">
  <span aria-hidden="true">&#x26A0;&#xFE0F;</span>
  <p>Warning message here.</p>
</div>