From de91c5e0be65fe3f9063305e583cc66cd02ec169 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 11 May 2016 21:18:35 -0700 Subject: [PATCH] fixes #19650: improve non-flexbox card deck behavior so columns are always the same width --- scss/_card.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_card.scss b/scss/_card.scss index fdc5998de5..fd0280a9e9 100644 --- a/scss/_card.scss +++ b/scss/_card.scss @@ -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; } }