Toolbars use flexbox the way it’s meant to be, for UI layout and not for page layout.

<div class="toolbar">
	<div class="toolbar__section">
		<nav class="breadcrumb" role="navigation" aria-label="Breadcrumb">
			<ol class="breadcrumb__list">
				<li class="breadcrumb__item">
					<a href="#" class="breadcrumb__link">Home</a>
				</li>
				<li class="breadcrumb__item">
					<a href="#" class="breadcrumb__link">Brands</a>
				</li>
				<li class="breadcrumb__item">Lee</li>
			</ol>
		</nav>
	</div>
	<div class="toolbar__section">
		<button class="button button--primary" type="submit">Save</button>
	</div>
</div>
Selector Description
.toolbar__section Place your components here. You can add as many of these sections as you want.

Dark version

We only control the background-color with CSS. We have no styling control of the content. If you need white text on this dark background, make sure you add the necessary modifiers on that module.

In the example below, we’ve included a breadcrumb with a modifier: .breadcrumb--light

<div class="toolbar toolbar--dark">
	<div class="toolbar__section">
		<!-- some component here that has legible text on a dark background -->
	</div>
	<div class="toolbar__section">
		<!-- another component here with a modifier -->
	</div>
</div>