Panel

An extension of GOVUK panel but with additional colour options. The panel component is a visible container used on confirmation or results pages to highlight important content.

Default example

HTML
<div class="das-panel">
  <h1 class="das-panel__title">
    Task is complete
  </h1>
  <div class="das-panel__body">
    Here are the details of the next steps
  </div>
</div>

Featured example

Completed example

HTML
<div class="das-panel das-panel--confirmation">
  <h1 class="das-panel__title">
    Task is complete
  </h1>
</div>

Muted example

HTML
<div class="das-panel das-panel--muted">
  <h1 class="das-panel__title">
    Task is complete
  </h1>
  <div class="das-panel__body">
    Here are the details of the next steps
  </div>
</div>