Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
The component failed to render properly, likely due to a configuration issue in Storybook. Here are some common causes and how you can address them:
Use flexbox alignment utilities to vertically and horizontally align columns.
Change the vertical alignment with any of the responsive align-items-* classes.
Or, change the alignment of each column individually with any of the responsive align-self-* classes.
<div class="container"> <div class="row-height row align-items-start"> <div class="col">Item 1</div> <div class="col">Item 2</div> <div class="col">Item 3</div> </div> </div>
Change the horizontal alignment with any of the responsive justify-content-* classes.
If more than 12 columns are placed within a single row, each group of extra columns will, as one unit, wrap onto a new line.
Breaking columns to a new line in flexbox requires a small hack: add an element with width: 100% wherever you want to wrap your columns to a new line. Normally this is accomplished with multiple .rows, but not every implementation method can account for this.
Use .order- classes for controlling the visual order of your content. These classes are responsive, so you can set the order by breakpoint (e.g. .order-1.order-md-2). Includes support for 1 through 5 across all seven grid tiers. If you need more .order-* classes.
There are also responsive .order-first and .order-last classes that change the order of an element by applying order: -1 and order: 6, respectively. These classes can also be intermixed with the numbered .order-* classes as needed.
You can offset grid columns in two ways: our responsive .offset- grid classes and our margin utilities. Grid classes are sized to match columns while margins are more useful for quick layouts where the width of the offset is variable.
Move columns to the right using .offset-* classes. These classes increase the left margin of a column by * columns. For example, .offset-4 moves .col-1 over four columns. You can also apply the offset above a certain breakpoint with the breakpoint infixes e.g. offset-md-4.
In addition to column clearing at responsive breakpoints, you may need to reset offsets.
Resize the browser window to see changes.