From: Laury GvR Date: Tue, 5 Apr 2016 20:15:07 +0000 (-0400) Subject: Qty label left aligned X-Git-Tag: v1.0.0^2~42 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=527b4f7c449896c7f699ea9cd0a38baa799f8837;p=WP-Themes%2Fjollylama.git Qty label left aligned --- diff --git a/css/app.css b/css/app.css index 889c4b0..7530cc3 100644 --- a/css/app.css +++ b/css/app.css @@ -6988,13 +6988,10 @@ main.woocommerce, div.woocommerce { background-color: transparent; color: inherit !important; } main.woocommerce #content .product.type-product .cart-qty-label, div.woocommerce #content .product.type-product .cart-qty-label { - float: right; + float: none; + text-align: center; clear: both; margin-left: 5px; } - @media only screen and (max-width: 40em) { - main.woocommerce #content .product.type-product .cart-qty-label, div.woocommerce #content .product.type-product .cart-qty-label { - float: none; - text-align: center; } } main.woocommerce #content .product.type-product .price, div.woocommerce #content .product.type-product .price { color: transparent; margin-bottom: 0; diff --git a/scss/plugins/_woocommerce.scss b/scss/plugins/_woocommerce.scss index 06e4386..4034514 100644 --- a/scss/plugins/_woocommerce.scss +++ b/scss/plugins/_woocommerce.scss @@ -645,11 +645,8 @@ div.woocommerce { } } .cart-qty-label { - float: right; - @media #{$small-only} { - float:none; - text-align: center; - } + float: none; + text-align: center; clear: both; margin-left: 5px; }