2019-01-31 01:04:11 +00:00
|
|
|
/** @format */
|
|
|
|
|
|
|
|
.woocommerce-setting {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: $gap-large;
|
|
|
|
@include breakpoint( '<1280px' ) {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-setting__label {
|
|
|
|
@include font-size(16);
|
|
|
|
margin-bottom: $gap;
|
|
|
|
padding-right: $gap;
|
|
|
|
font-weight: bold;
|
|
|
|
@include breakpoint( '>1280px' ) {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 05:32:05 +00:00
|
|
|
.woocommerce-setting__input {
|
2019-01-31 01:04:11 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
@include breakpoint( '>1280px' ) {
|
|
|
|
width: 35%;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: $gap-small;
|
|
|
|
color: $core-grey-dark-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='checkbox'] {
|
|
|
|
margin-right: $gap-small;
|
|
|
|
}
|
2019-03-06 05:32:05 +00:00
|
|
|
|
|
|
|
button {
|
|
|
|
margin-bottom: $gap-small;
|
|
|
|
align-self: flex-start;
|
|
|
|
}
|
2019-01-31 01:04:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-setting__options-group-label {
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: $gap-small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-setting__help {
|
|
|
|
font-style: italic;
|
|
|
|
color: $core-grey-dark-300;
|
|
|
|
}
|