diff options
| author | Mark Otto <[email protected]> | 2018-09-18 22:14:45 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2018-09-18 22:14:45 -0700 |
| commit | 4dc5671d1b78547843a68b88caa7b2a9c60f0a72 (patch) | |
| tree | bb4baf098370e9875f2cfd15063a6775a4b301ac | |
| parent | 55655b27816f84655d19e00b7b11deb2593f93cd (diff) | |
| download | bootstrap-4dc5671d1b78547843a68b88caa7b2a9c60f0a72.tar.xz bootstrap-4dc5671d1b78547843a68b88caa7b2a9c60f0a72.zip | |
Remove flex utilities from .list-group-item's as they're display: block; meaning the utilities have no affect. Closes #27162.
| -rw-r--r-- | site/docs/4.1/components/list-group.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/site/docs/4.1/components/list-group.md b/site/docs/4.1/components/list-group.md index 7ecb249b3..a33547333 100644 --- a/site/docs/4.1/components/list-group.md +++ b/site/docs/4.1/components/list-group.md @@ -156,7 +156,7 @@ Add nearly any HTML within, even for linked list groups like the one below, with {% capture example %} <div class="list-group"> - <a href="#" class="list-group-item list-group-item-action flex-column align-items-start active"> + <a href="#" class="list-group-item list-group-item-action active"> <div class="d-flex w-100 justify-content-between"> <h5 class="mb-1">List group item heading</h5> <small>3 days ago</small> @@ -164,7 +164,7 @@ Add nearly any HTML within, even for linked list groups like the one below, with <p class="mb-1">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p> <small>Donec id elit non mi porta.</small> </a> - <a href="#" class="list-group-item list-group-item-action flex-column align-items-start"> + <a href="#" class="list-group-item list-group-item-action"> <div class="d-flex w-100 justify-content-between"> <h5 class="mb-1">List group item heading</h5> <small class="text-muted">3 days ago</small> @@ -172,7 +172,7 @@ Add nearly any HTML within, even for linked list groups like the one below, with <p class="mb-1">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p> <small class="text-muted">Donec id elit non mi porta.</small> </a> - <a href="#" class="list-group-item list-group-item-action flex-column align-items-start"> + <a href="#" class="list-group-item list-group-item-action"> <div class="d-flex w-100 justify-content-between"> <h5 class="mb-1">List group item heading</h5> <small class="text-muted">3 days ago</small> |
