-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
30 lines (27 loc) · 1004 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#billing_street_number_field {
-webkit-flex-basis: 100% !important;
-ms-flex-preferred-size: 100% !important;
flex-basis: 30% !important;
width: 30% !important;
float: left !important;
clear: none !important;
}
#billing_address_1_field {
-webkit-flex-basis: 100% !important;
-ms-flex-preferred-size: 100% !important;
flex-basis: 65% !important;
width: 65% !important;
float: left !important;
clear: none !important;
margin-right: 5% !important;
}
@media screen and (max-width: 380px) {
.woocommerce-checkout div#billing_street_number_field,.woocommerce-checkout #billing_address_1_field,.woocommerce-address-fields div#billing_street_number_field,.woocommerce-address-fields #billing_address_1_field {
-webkit-flex-basis: 100% !important;
-ms-flex-preferred-size: 100% !important;
flex-basis: 100% !important;
margin-right: 0 !important;
width: 100%% !important;
clear: both !important;
}
}