Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 57bd0c6

Browse files
topherfangioThomasBurleson
authored andcommitted
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 `<md-card-content>` element had no display property set. Fixes #2974. Closes #5120.
1 parent 119a820 commit 57bd0c6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/components/card/card.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ md-card {
1818
}
1919

2020
md-card-content {
21+
display: block;
2122
padding: $card-padding;
2223
}
24+
2325
.md-actions {
2426
margin: 0;
2527

0 commit comments

Comments
 (0)