Commit 7a031e63 authored by Jerry Chou's avatar Jerry Chou Committed by hetech

Table: fix empty text vertical alignment issue on IE10+ (#13638)

* Table: fix empty text vertical alignment issue on IE10+

* Table: add a comment to IE-specific fixes
parent fb4ee26b
......@@ -27,6 +27,9 @@
}
@include e(empty-text) {
// min-height doesn't work in IE10 and IE11 https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
// set empty text line height up to contrainer min-height as workaround.
line-height: 60px;
width: 50%;
color: $--color-text-secondary;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment