提交 904ca0ae 编写于 作者: 陈帅

Fix#1640 Floating Component Style Issues

上级 1d8293a6
......@@ -8,13 +8,6 @@
position: relative;
}
:global {
.ant-layout {
min-height: 100vh;
overflow-x: hidden;
}
}
.logo {
height: 64px;
line-height: 58px;
......
......@@ -220,7 +220,7 @@ export default class SiderMenu extends PureComponent {
});
};
render() {
const { logo, collapsed, onCollapse, theme } = this.props;
const { logo, collapsed, onCollapse, fixSiderbar, theme } = this.props;
const { openKeys } = this.state;
const defaultProps = collapsed ? {} : { openKeys };
return (
......@@ -231,7 +231,9 @@ export default class SiderMenu extends PureComponent {
breakpoint="lg"
onCollapse={onCollapse}
width={256}
className={`${styles.sider} ${theme === 'light' ? styles.light : ''}`}
className={`${styles.sider} ${fixSiderbar ? styles.fixSiderbar : ''} ${
theme === 'light' ? styles.light : ''
}`}
>
<div className={styles.logo} key="logo" id="logo">
<Link to="/">
......
......@@ -29,6 +29,11 @@
box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
position: relative;
z-index: 10;
&.fixSiderbar {
position: fixed;
top: 0;
left: 0;
}
&.light {
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
background-color: white;
......
......@@ -84,10 +84,10 @@ class BasicLayout extends React.PureComponent {
return title;
}
getLayoutStyle = () => {
const { fixSiderbar } = this.props;
const { fixSiderbar, collapsed } = this.props;
if (fixSiderbar) {
return {
height: '100vh',
paddingLeft: collapsed ? '80px' : '256px',
};
}
return null;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册