Browse Source

bugfix: remove unuse style and add IE11 style

close #5762
pull/5786/head
chenshuai2144 6 years ago
parent
commit
38cdd7edce
  1. 2
      package.json
  2. 12
      src/global.less
  3. 11
      src/layouts/BlankLayout.tsx

2
package.json

@ -58,7 +58,7 @@
"not ie <= 10"
],
"dependencies": {
"@ant-design/pro-layout": "^4.8.7",
"@ant-design/pro-layout": "^4.9.11",
"@antv/data-set": "^0.10.2",
"antd": "^3.23.6",
"classnames": "^2.2.6",

12
src/global.less

@ -24,11 +24,6 @@ body {
-moz-osx-font-smoothing: grayscale;
}
.ant-pro-basicLayout {
width: 100%;
height: 100%;
}
ul,
ol {
list-style: none;
@ -50,3 +45,10 @@ ol {
}
}
}
// 兼容IE11
@media screen and(-ms-high-contrast: active), (-ms-high-contrast: none) {
body .ant-design-pro > .ant-layout {
min-height: 100vh;
}
}

11
src/layouts/BlankLayout.tsx

@ -1,14 +1,5 @@
import React from 'react';
const Layout: React.FC = ({ children }) => (
<div
style={{
width: '100vw',
height: '100vh',
}}
>
{children}
</div>
);
const Layout: React.FC = ({ children }) => <>{children}</>;
export default Layout;

Loading…
Cancel
Save