Fix navigation handling on the `skip` link. (https://github.com/woocommerce/woocommerce-admin/pull/2738)
This commit is contained in:
parent
f542a4c011
commit
1a479eefea
|
@ -195,9 +195,9 @@ class Start extends Component {
|
|||
</Card>
|
||||
|
||||
<p>
|
||||
<Link href="#" onClick={ this.skipWizard }>
|
||||
<Button isLink className="woocommerce-profile-wizard__skip" onClick={ this.skipWizard }>
|
||||
{ __( 'Proceed without Jetpack or WooCommerce Services', 'woocommerce-admin' ) }
|
||||
</Link>
|
||||
</Button>
|
||||
</p>
|
||||
</Fragment>
|
||||
);
|
||||
|
|
|
@ -5,6 +5,13 @@
|
|||
color: $muriel-gray-600;
|
||||
}
|
||||
|
||||
.woocommerce-profile-wizard__skip.components-button.is-link {
|
||||
color: $muriel-gray-600;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.woocommerce-card {
|
||||
margin-top: $gap;
|
||||
|
||||
|
|
Loading…
Reference in New Issue