From 83db901b89f668769e54a1322521d0c32e26e45d Mon Sep 17 00:00:00 2001 From: Andrew Schultz Date: Sun, 6 Sep 2020 22:43:17 +0930 Subject: [PATCH] Update woocommerce.scss Fix coupon code input width, apply only to the cart as it will break the checkout field width --- sass/understrap/woocommerce.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sass/understrap/woocommerce.scss b/sass/understrap/woocommerce.scss index df626f7b..24c96e4d 100644 --- a/sass/understrap/woocommerce.scss +++ b/sass/understrap/woocommerce.scss @@ -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; } }