A control bar (.casca-toolbar) for the buttons, chips, and
switches above a chart or table. Group related controls with
.casca-toolbar-group. It wraps to multiple rows by default;
data-align distributes the groups and
data-variant="scroll" keeps everything on one scrolling row.
<div class="casca-toolbar">
<div class="casca-toolbar-group"> ...controls... </div>
<div class="casca-toolbar-group"> ...actions... </div>
</div>
Pushes the first and last groups to opposite ends.
<div class="casca-toolbar" data-align="between"> ... </div>
Aligns every group to the trailing edge.
<div class="casca-toolbar" data-align="end"> ... </div>
Stays one row and scrolls horizontally instead of wrapping. Useful for many tags on narrow screens.
<div class="casca-toolbar" data-variant="scroll"> ...many chips... </div>