Layout changes

This commit is contained in:
2020-12-11 22:22:10 -06:00
parent ac8a9cf938
commit 617f020ad0
2 changed files with 17 additions and 11 deletions

View File

@@ -8,11 +8,15 @@
background: var(--control_background);
}
.PinnedManagerItems {
.PinnedManagerOwner {
height: 70%;
padding: var(--default_spacing);
overflow-x: auto;
overflow-y: auto;
border-radius: var(--border_radius);
background: var(--control_background);
}
.PinnedManagerItems {
height: 100%;
overflow-x: auto;
overflow-y: auto;
}

View File

@@ -161,6 +161,7 @@ export default connect(mapStateToProps, mapDispatchToProps)(class extends IPCCon
<h1 style={{width: '100%', textAlign: 'center'}}>{'Pinned File Manager'}</h1>
<div className={'PinnedManagerActiveDirectory'}><b>&nbsp;{this.state.active_directory}</b>
</div>
<div className={'PinnedManagerOwner'}>
<div className={'PinnedManagerItems'}>
{
this.state.items.map((i, k) => {
@@ -170,6 +171,7 @@ export default connect(mapStateToProps, mapDispatchToProps)(class extends IPCCon
})
}
</div>
</div>
</Box>
)
}