overflow:hidden on blockquote caused IE freakout

This commit is contained in:
Jeff Atwood 2014-10-18 02:48:20 -07:00
parent 9ba2c106ae
commit b77f7ce567
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@ aside.quote {
border-left: 5px solid darken(scale-color-diff(), 10%);
background-color: scale-color-diff();
color: scale-color($primary, $lightness: 30%);
padding: 12px 12px 0 12px;
// IE will screw up the blockquote underneath if bottom padding is 0px
padding: 12px 12px 1px 12px;
/* blockquote is underneath this and has top margin */
.avatar { margin-right: 7px; }
img { margin-top: -4px; }