diff options
| author | Ryan Cleary <[email protected]> | 2018-01-30 02:33:55 -0600 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-01-30 10:33:55 +0200 |
| commit | 0a4c0a527ddc0e0dc61c8134c44f1460e5bd233f (patch) | |
| tree | 43df6ac0017fdf400f525ff58d130d50e9fa74a2 | |
| parent | e559034d36eada2cd7261afe5822dc5262851aad (diff) | |
| download | bootstrap-0a4c0a527ddc0e0dc61c8134c44f1460e5bd233f.tar.xz bootstrap-0a4c0a527ddc0e0dc61c8134c44f1460e5bd233f.zip | |
Fix example Blog post card text overflowing for medium screen size. (#25416)
| -rw-r--r-- | docs/4.0/examples/blog/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/examples/blog/index.html b/docs/4.0/examples/blog/index.html index d5f9cfe56..2fad7bb51 100644 --- a/docs/4.0/examples/blog/index.html +++ b/docs/4.0/examples/blog/index.html @@ -74,7 +74,7 @@ <p class="card-text mb-auto">This is a wider card with supporting text below as a natural lead-in to additional content.</p> <a href="#">Continue reading</a> </div> - <img class="card-img-right flex-auto d-none d-md-block" data-src="holder.js/200x250?theme=thumb" alt="Card image cap"> + <img class="card-img-right flex-auto d-none d-lg-block" data-src="holder.js/200x250?theme=thumb" alt="Card image cap"> </div> </div> <div class="col-md-6"> @@ -88,7 +88,7 @@ <p class="card-text mb-auto">This is a wider card with supporting text below as a natural lead-in to additional content.</p> <a href="#">Continue reading</a> </div> - <img class="card-img-right flex-auto d-none d-md-block" data-src="holder.js/200x250?theme=thumb" alt="Card image cap"> + <img class="card-img-right flex-auto d-none d-lg-block" data-src="holder.js/200x250?theme=thumb" alt="Card image cap"> </div> </div> </div> |
