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
|
props.contentComponent
|
||||||
) : (
|
) : (
|
||||||
<Row style={{height: '100%'}}>
|
<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}
|
{props.informationComponent}
|
||||||
</Col>
|
</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}
|
{props.selectionComponent}
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
export default function StepInformation(props) {
|
export default function StepInformation(props) {
|
||||||
return (
|
return (
|
||||||
<div className='ph-4'>
|
<div className='ph-4'>
|
||||||
<h4>{props.title}</h4>
|
<h3>{props.title}</h3>
|
||||||
<br/>
|
<br/>
|
||||||
{props.description}
|
{props.description}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue