diff --git a/components/cart/delete-item-button.tsx b/components/cart/delete-item-button.tsx index 7fc4d98d3..73fb9774c 100644 --- a/components/cart/delete-item-button.tsx +++ b/components/cart/delete-item-button.tsx @@ -35,9 +35,9 @@ export default function DeleteItemButton({ item }: { item: CartItem }) { )} > {isPending ? ( - + ) : ( - + )} ); diff --git a/components/cart/modal.tsx b/components/cart/modal.tsx index 9ac5061f5..1e34512bb 100644 --- a/components/cart/modal.tsx +++ b/components/cart/modal.tsx @@ -112,9 +112,9 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU
  • -
    +
    @@ -123,7 +123,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU onClick={closeCart} className="z-30 flex flex-row space-x-4" > -
    +
    {item.merchandise.title !== DEFAULT_OPTION ? (

    {item.merchandise.title} @@ -169,31 +169,23 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU ); })} -

    -
    -

    Subtotal

    - -
    -
    +
    +

    Taxes

    -
    +

    Shipping

    Calculated at checkout

    -
    +

    Total

    @@ -201,7 +193,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU
    Proceed to Checkout diff --git a/components/icons/cart.tsx b/components/icons/cart.tsx index 57cc5223d..648430b5d 100644 --- a/components/icons/cart.tsx +++ b/components/icons/cart.tsx @@ -14,7 +14,7 @@ export default function CartIcon({ className={clsx('h-6 transition-all ease-in-out hover:scale-110 ', className)} /> {quantity ? ( -
    +
    {quantity}
    ) : null} diff --git a/tailwind.config.js b/tailwind.config.js index 4c8280c87..5e9fd2ec8 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -21,8 +21,10 @@ module.exports = { light: '#FAFAFA', violetDark: '#4c2889', 'dark-gray-4': '#2E2E2E', + 'dark-gray-7': '#8f8f8f', 'base-gray-900': '#666666', - 'light-gray-4': '#EAEAEA' + 'light-gray-4': '#EAEAEA', + 'vercel-blue': '#0C4BE6' }, keyframes: { fadeIn: {