@@ -40,7 +40,12 @@ of the sidebar position.
4040
4141### Dividers
4242
43- Add ` Layout--divided ` to the ` Layout ` to show the dividers.
43+ Use ` Layout--divided ` in conjuction with a ` Layout-divider ` to show a divider between the main content and the sidebar.
44+ Flowing as row:
45+ - default: shows a ` 1px ` line between main and sidebar
46+ - ` Layout-divider--flowRow-shallow ` : shows a filled ` 8px ` divider.
47+ - ` Layout-divider--flowRow-hidden ` : hides the divider
48+
4449
4550``` html live
4651<div class =" Layout Layout--divided" >
@@ -53,6 +58,16 @@ Add `Layout--divided` to the `Layout` to show the dividers.
5358 <div class =" Layout-divider" ></div >
5459 <div class =" Layout-sidebar border" >divider hidden</div >
5560</div >
61+ <div class =" Layout Layout--divided" >
62+ <div class =" Layout-main border" >main content</div >
63+ <div class =" Layout-divider Layout-divider--flowRow-shallow" ></div >
64+ <div class =" Layout-sidebar border" >flowRow shallow divider</div >
65+ </div >
66+ <div class =" Layout Layout--divided" >
67+ <div class =" Layout-main border" >main content</div >
68+ <div class =" Layout-divider Layout-divider--flowRow-hidden" ></div >
69+ <div class =" Layout-sidebar border" >flowRow hidden divider</div >
70+ </div >
5671```
5772
5873### Centered content
@@ -181,6 +196,27 @@ Add `Layout--divided` to the `Layout` to show the dividers.
181196</div >
182197```
183198
199+ ### Sidebar positioning as rows
200+
201+ - ` Layout--sidebarPosition-flowRow-start ` (default): when stacked, render the sidebar first
202+ - ` Layout--sidebarPosition-flowRow-end ` : when stacked, render the sidebar last
203+ - ` Layout--sidebarPosition-flowRow-none ` : when stacked, hide the sidebar
204+
205+ ``` html live
206+ <div class =" Layout Layout--sidebarPosition-flowRow-start" >
207+ <div class =" Layout-main border" >main</div >
208+ <div class =" Layout-sidebar border" >sidebar</div >
209+ </div >
210+ <div class =" Layout Layout--sidebarPosition-flowRow-end" >
211+ <div class =" Layout-main border" >main</div >
212+ <div class =" Layout-sidebar border" >sidebar</div >
213+ </div >
214+ <div class =" Layout Layout--sidebarPosition-flowRow-none" >
215+ <div class =" Layout-main border" >main</div >
216+ <div class =" Layout-sidebar border" >sidebar</div >
217+ </div >
218+ ```
219+
184220### Layout stacking
185221
186222- Default: stacks when container is ` sm ` .
0 commit comments