Onboarding: Fix alignment of container on benefits screen. (https://github.com/woocommerce/woocommerce-admin/pull/4837)
This commit is contained in:
parent
e2d41ea718
commit
ae6f5d4615
|
@ -288,6 +288,7 @@ class ProfileWizard extends Component {
|
||||||
render() {
|
render() {
|
||||||
const { query } = this.props;
|
const { query } = this.props;
|
||||||
const step = this.getCurrentStep();
|
const step = this.getCurrentStep();
|
||||||
|
const stepKey = step.key;
|
||||||
|
|
||||||
const container = createElement( step.container, {
|
const container = createElement( step.container, {
|
||||||
query,
|
query,
|
||||||
|
@ -300,13 +301,12 @@ class ProfileWizard extends Component {
|
||||||
const steps = this.getSteps().map( ( _step ) =>
|
const steps = this.getSteps().map( ( _step ) =>
|
||||||
pick( _step, [ 'key', 'label', 'isComplete' ] )
|
pick( _step, [ 'key', 'label', 'isComplete' ] )
|
||||||
);
|
);
|
||||||
|
const classNames = `woocommerce-profile-wizard__container ${ stepKey }`;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<ProfileWizardHeader currentStep={ step.key } steps={ steps } />
|
<ProfileWizardHeader currentStep={ stepKey } steps={ steps } />
|
||||||
<div className="woocommerce-profile-wizard__container">
|
<div className={ classNames }>{ container }</div>
|
||||||
{ container }
|
|
||||||
</div>
|
|
||||||
</Fragment>
|
</Fragment>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,6 +85,10 @@
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.benefits {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
@include breakpoint( '<782px' ) {
|
@include breakpoint( '<782px' ) {
|
||||||
padding-left: $gap;
|
padding-left: $gap;
|
||||||
padding-right: $gap;
|
padding-right: $gap;
|
||||||
|
|
Loading…
Reference in New Issue