Commit 7796e645 authored by Mark Otto's avatar Mark Otto

Add margin to thumbnails for proper spacing

Hadn't thought about this until fixes #10137, but it makes sense I
think to have margin on the bottom of thumbnails for spacing when
stacking (or using different grid tiers).
parent dd9980e8
...@@ -5010,6 +5010,7 @@ a.list-group-item.active > .badge, ...@@ -5010,6 +5010,7 @@ a.list-group-item.active > .badge,
height: auto; height: auto;
max-width: 100%; max-width: 100%;
padding: 4px; padding: 4px;
margin-bottom: 20px;
line-height: 1.428571429; line-height: 1.428571429;
background-color: #ffffff; background-color: #ffffff;
border: 1px solid #dddddd; border: 1px solid #dddddd;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
.thumbnail { .thumbnail {
.img-thumbnail(); .img-thumbnail();
display: block; // Override the inline-block from `.img-thumbnail` display: block; // Override the inline-block from `.img-thumbnail`
margin-bottom: @line-height-computed;
> img { > img {
.img-responsive(); .img-responsive();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment