From 9dc45aad697be731c54692a408403a47808ee6c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adem=C3=ADlson=20F=2E=20Tonato?= Date: Wed, 28 Oct 2020 10:45:37 +0000 Subject: [PATCH] fix: adjust min and max width of the add to cart button --- components/product/ProductView/ProductView.module.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/components/product/ProductView/ProductView.module.css b/components/product/ProductView/ProductView.module.css index ddcb42667..dec06f665 100644 --- a/components/product/ProductView/ProductView.module.css +++ b/components/product/ProductView/ProductView.module.css @@ -78,8 +78,13 @@ } .button { - min-width: 300px; text-align: center; + width: 100%; + max-width: 300px; + + @screen sm { + min-width: 300px; + } } .wishlistButton {