Update woocommerce.scss

Fix coupon code input width, apply only to the cart as it will break the checkout field width
This commit is contained in:
Andrew Schultz 2020-09-06 22:43:17 +09:30 committed by GitHub
parent f7c9058242
commit 83db901b89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ figure.woocommerce-product-gallery__wrapper {
max-width: inherit !important;
}
// Fix coupon code input width
// Fix coupon code input width for cart, apply only to the cart as it will break the checkout field width
@media(min-width: 768px) {
#coupon_code.input-text {
.woocommerce-cart #coupon_code.input-text {
width: 110px !important;
}
}