Rm useless wrapper, add empty space box

This commit is contained in:
bulby97 2021-08-26 14:21:03 +02:00
parent ecce72d23b
commit a0f4f6c441
2 changed files with 1 additions and 17 deletions

View File

@ -227,6 +227,7 @@ const Collapse = ({
}
)}
</Row>
<Box style={{ width: 120 }} />
<ConditionsModal
headerBreadCrumbs={[label, 'app.components.LeftMenuLinkContainer.settings']}
actions={checkboxesActions}

View File

@ -1,17 +0,0 @@
/* eslint-disable indent */
import styled from 'styled-components';
import CollapsePropertyMatrix from './CollapsePropertyMatrix/Wrapper';
const RowWrapper = styled.div`
${({ withMargin }) =>
withMargin &&
`
margin: 9px 0;
`}
${CollapsePropertyMatrix}:last-of-type {
padding-bottom: 17px;
}
`;
export default RowWrapper;