修改。

This commit is contained in:
tengge1 2019-06-08 09:10:36 +08:00
parent 99241ac780
commit 208febd8a9
2 changed files with 7 additions and 2 deletions

View File

@ -79,9 +79,9 @@ class EWorkspace extends React.Component {
</Toolbar>
</Panel>
<Panel title={'South'} region={'south'} split={true} style={{ height: '120px', border: 'none' }}>
<Timeline style={{ width: 0, flex: 1, }}></Timeline>
<Timeline style={{ width: 0, flex: 1 }}></Timeline>
</Panel>
<Panel title={'West'} region={'west'} split={true} style={{ width: '200px', border: 'none' }}>
<Panel title={'West'} region={'west'} split={true} className={'TimePanel'} style={{ width: '200px', border: 'none' }}>
<Toolbar direction={'vertical'}>
<Icon icon={'select'}></Icon>
<ToolbarSeparator />

View File

@ -1,3 +1,8 @@
.EWorkspace {
flex: 1;
}
.EWorkspace .TimePanel .body {
display: flex;
overflow: auto;
}