diff options
| author | Garrett Johnson <[email protected]> | 2021-03-09 08:41:39 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2021-03-10 17:23:24 -0800 |
| commit | a49d1e3e58af96b7d08e0869261efdf07da13b22 (patch) | |
| tree | ac87d58f58ac8781ea8c15a4b60bbb1862612105 | |
| parent | a245ef46e2143851465951b363df403f2e3add19 (diff) | |
| download | bootstrap-a49d1e3e58af96b7d08e0869261efdf07da13b22.tar.xz bootstrap-a49d1e3e58af96b7d08e0869261efdf07da13b22.zip | |
Fix Flex utilities to add vertical space in example
The `justify-content-around` example is missing a `mb-3` class because it is not the last example.
| -rw-r--r-- | site/content/docs/5.0/utilities/flex.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/5.0/utilities/flex.md b/site/content/docs/5.0/utilities/flex.md index c87f7474e..bbb1824b4 100644 --- a/site/content/docs/5.0/utilities/flex.md +++ b/site/content/docs/5.0/utilities/flex.md @@ -101,7 +101,7 @@ Use `justify-content` utilities on flexbox containers to change the alignment of <div class="p-2 bd-highlight">Flex item</div> <div class="p-2 bd-highlight">Flex item</div> </div> - <div class="d-flex justify-content-around bd-highlight"> + <div class="d-flex justify-content-around bd-highlight mb-3"> <div class="p-2 bd-highlight">Flex item</div> <div class="p-2 bd-highlight">Flex item</div> <div class="p-2 bd-highlight">Flex item</div> |
