Fix display

This commit is contained in:
2020-12-10 22:54:41 -06:00
parent 0925e993d5
commit 23faef33fe

View File

@@ -190,7 +190,7 @@ export default connect(mapStateToProps, mapDispatchToProps)(props => {
type={'Heading2'}/>
{(isSkynet && (props.MState.Mounted)) ? (
<a href={'#'}
col={configButton ? 24 : 18}
col={(configButton ? 24 : 18) + 34}
onClick={props.MState.AllowMount ? () => props.displaySkynetExport(true) : e => {
e.preventDefault();
}}
@@ -201,7 +201,7 @@ export default connect(mapStateToProps, mapDispatchToProps)(props => {
) : null}
{(isSkynet && (props.MState.Mounted)) ? (
<a href={'#'}
col={configButton ? 24 + 13 : 18 + 13}
col={(configButton ? 24 + 13 : 18 + 13) + 34}
onClick={props.MState.AllowMount ? () => props.displaySkynetImport(true) : e => {
e.preventDefault();
}}