Callout
Info and warning boxes for supplementary content.
Classes
| Class | Purpose |
|---|---|
.callout | Base flex container with gap, padding, radius |
.callout--info | Info variant — blue background and border |
.callout--warning | Warning 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">ℹ️</span>
<p>Informational message here.</p>
</div>
<div class="callout callout--warning" role="note">
<span aria-hidden="true">⚠️</span>
<p>Warning message here.</p>
</div>