Bottom bar

The bottom app bar (.bottom-bar) is a horizontal strip anchored to the bottom edge of the screen, typically holding secondary actions or a set of icon buttons alongside an optional floating action button. It is entirely static and visual — flickui.js has no wiring for it.

<div class="bottom-bar bottom-bar-fixed">
  <div class="bottom-bar-actions">
    <button type="button" class="btn btn-text"><span class="btn-label">Share</span></button>
    <button type="button" class="btn btn-text"><span class="btn-label">Save</span></button>
  </div>
  <div class="bottom-bar-fab">
    <button type="button" class="fab fab-sm" aria-label="Compose">
      <span class="fab-icon" aria-hidden="true">+</span>
    </button>
  </div>
</div>