fixes #19650: improve non-flexbox card deck behavior so columns are always the same width

This commit is contained in:
Mark Otto 2016-05-11 21:18:35 -07:00
parent 5ff8d0f66e
commit de91c5e0be
1 changed files with 1 additions and 1 deletions

View File

@ -214,12 +214,12 @@
$space-between-cards: (2 * $card-deck-margin);
.card-deck {
display: table;
width: 100%;
table-layout: fixed;
border-spacing: $space-between-cards 0;
.card {
display: table-cell;
width: 1%;
vertical-align: top;
}
}