From 746e707290f4f4c155b15acb8ac2cc01767ce3fd Mon Sep 17 00:00:00 2001 From: Sol Irvine Date: Thu, 24 Aug 2023 12:22:27 -0700 Subject: [PATCH] yolo: height of inline add to cart button fixed --- components/cart/inline-add-to-cart.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/cart/inline-add-to-cart.tsx b/components/cart/inline-add-to-cart.tsx index 573e68c67..1cc7fdf4f 100644 --- a/components/cart/inline-add-to-cart.tsx +++ b/components/cart/inline-add-to-cart.tsx @@ -54,7 +54,7 @@ export function InlineAddToCart({ }); }} className={clsx( - 'p-4', + 'h-[56px] p-4', 'relative flex w-full items-center justify-center', 'border border-white/20 hover:border-white', 'font-serif text-base tracking-wider text-white', @@ -68,7 +68,7 @@ export function InlineAddToCart({ {!isPending ? ( {availableForSale ? t('cart.add') : t('cart.out-of-stock')} ) : ( - + )} );