Layout adjustments
This commit is contained in:
parent
d3acc27339
commit
727dfbe818
2 changed files with 3 additions and 3 deletions
|
@ -14,10 +14,10 @@ export default function Step(props) {
|
|||
props.contentComponent
|
||||
) : (
|
||||
<Row style={{height: '100%'}}>
|
||||
<Col md="4" sm="12" style={{display: 'flex', alignItems: 'center'}}>
|
||||
<Col lg={{ size: "3", offset: 1 }} md="5" sm="12" style={{display: 'flex', alignItems: 'center', justifyContent: 'center'}}>
|
||||
{props.informationComponent}
|
||||
</Col>
|
||||
<Col md="8" sm="12" style={{display: 'flex', alignItems: 'center'}}>
|
||||
<Col lg={{ size: "7", offset: 1}} md="7" sm="12" style={{display: 'flex', alignItems: 'center'}}>
|
||||
{props.selectionComponent}
|
||||
</Col>
|
||||
</Row>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
export default function StepInformation(props) {
|
||||
return (
|
||||
<div className='ph-4'>
|
||||
<h4>{props.title}</h4>
|
||||
<h3>{props.title}</h3>
|
||||
<br/>
|
||||
{props.description}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue