Browse Source

fix #1287 advanced details page is not displayed in IE11

pull/1391/head
jim 8 years ago
parent
commit
24333d5c6d
  1. 3
      src/components/DescriptionList/index.less
  2. 3
      src/components/PageHeader/index.less

3
src/components/DescriptionList/index.less

@ -17,7 +17,8 @@
}
.term {
line-height: 22px;
// Line-height is 22px IE dom height will calculate error
line-height: 20px;
padding-bottom: 16px;
margin-right: 8px;
color: @heading-color;

3
src/components/PageHeader/index.less

@ -66,7 +66,8 @@
.content,
.extraContent,
.main {
flex: auto;
// IE auto is no have height
flex: 1;
}
.title,

Loading…
Cancel
Save