Linux layout changes

This commit is contained in:
2019-10-01 22:09:52 -05:00
parent 6a7c471f46
commit e3b500b2ad
5 changed files with 15 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ export default connect(mapStateToProps, mapDispatchToProps)(props => {
selected={props.MState.DriveLetters.indexOf(props.PState.MountLocation)}/>;
} else {
inputColumnSpan = 58;
inputColumnSpan = 64;
inputControls = [];
let key = 0;
inputControls.push((

View File

@@ -1,4 +1,13 @@
.MountItems {
padding: 0;
margin: 0;
height: 121px;
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.MountItemsRemote {
padding: 0;
margin: 0;
height: 161px;

View File

@@ -331,7 +331,7 @@ class MountItems extends IPCContainer {
}
return (
<div className={'MountItems'}>
<div className={this.props.remoteSupported ? 'MountItemsRemote' : 'MountItems'}>
{retryDisplay}
{items}
</div>);