From 57bd0c6494836c3f63a31843327c40ae054ad90b Mon Sep 17 00:00:00 2001 From: Topher Fangio Date: Tue, 1 Sep 2015 16:14:27 -0500 Subject: [PATCH] fix(mdCard): Content padding not showing in IE 10. In IE 10, the padding in the content area was not being properly applied because the `` element had no display property set. Fixes #2974. Closes #5120. --- src/components/card/card.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/card/card.scss b/src/components/card/card.scss index 86aa677408b..5db2c22cd94 100644 --- a/src/components/card/card.scss +++ b/src/components/card/card.scss @@ -18,8 +18,10 @@ md-card { } md-card-content { + display: block; padding: $card-padding; } + .md-actions { margin: 0;