Fix OWB sell in person vertical alignment
This commit is contained in:
parent
97d3874e14
commit
6d09d0efcf
|
@ -1138,7 +1138,7 @@ h3.jetpack-reasons {
|
|||
font-weight: 500;
|
||||
margin-bottom: 0.5em;
|
||||
margin-top: 0.85em;
|
||||
display: block;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.location-input {
|
||||
|
@ -1188,13 +1188,15 @@ h3.jetpack-reasons {
|
|||
}
|
||||
}
|
||||
|
||||
.product-type-container {
|
||||
.product-type-container,
|
||||
.sell-in-person-container {
|
||||
margin-top: 14px;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
#woocommerce_sell_in_person {
|
||||
margin-left: 0;
|
||||
margin-top: calc(0.85em / 2);
|
||||
}
|
||||
|
||||
.wc-wizard-service-settings {
|
||||
|
|
|
@ -538,6 +538,7 @@ class WC_Admin_Setup_Wizard {
|
|||
</select>
|
||||
</div>
|
||||
|
||||
<div class="sell-in-person-container">
|
||||
<input
|
||||
type="checkbox"
|
||||
id="woocommerce_sell_in_person"
|
||||
|
@ -548,6 +549,7 @@ class WC_Admin_Setup_Wizard {
|
|||
<label class="location-prompt" for="woocommerce_sell_in_person">
|
||||
<?php esc_html_e( 'I will also be selling products or services in person.', 'woocommerce' ); ?>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<input type="checkbox" id="wc_tracker_checkbox" name="wc_tracker_checkbox" value="yes" <?php checked( 'yes', get_option( 'woocommerce_allow_tracking', 'no' ) ); ?> />
|
||||
|
||||
|
|
Loading…
Reference in New Issue