Skynet export fixes

This commit is contained in:
2020-06-23 15:18:13 -05:00
parent e7978e335b
commit d1ed8706fd
3 changed files with 25 additions and 2 deletions

View File

@@ -2,3 +2,20 @@
text-align: center;
padding-bottom: var(--default_spacing);
}
.SkynetExportList {
display: inline-block;
width: 100%;
overflow-x: auto;
overflow-y: auto;
height: calc(90vh - 80px);
}
.SkynetExportTree {
display: inline-flex;
overflow-x: scroll;
overflow-y: scroll;
white-space: nowrap;
height: calc(90vh - 80px);
width: 100%;
}

View File

@@ -155,7 +155,7 @@ export default connect(mapStateToProps, mapDispatchToProps)(class extends IPCCon
</div>
<h1
className={'SkynetExportHeading'}>{this.state.second_stage ? 'Verify Exports' : 'Export Files'}</h1>
<div style={{overflowX: 'auto', overflowY: 'auto', height: 'calc(90vh - 80px)'}}>
<div className={this.state.second_stage ? 'SkynetExportList' : 'SkynetExportTree'}>
{
this.state.second_stage ?
this.state.checked.map(path => {