Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
Fix font sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofwolski committed May 5, 2022
1 parent 0f8479f commit 95a3f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/[channel]/[locale]/cart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function Cart() {
<div className="mt-12">
<Link href={paths.checkout.$url()} passHref>
<a
className="block w-full bg-blue-500 border border-transparent rounded-md shadow-sm py-3 px-4 text-center font-medium text-white hover:bg-blue-700"
className="block w-full bg-blue-500 border border-transparent rounded-md shadow-sm py-3 px-4 text-center font-medium text-md text-white hover:bg-blue-700"
href="pass"
>
{t.formatMessage(messages.checkoutButton)}
Expand Down
2 changes: 1 addition & 1 deletion pages/[channel]/[locale]/products/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function ProductPage({ product }: InferGetStaticPropsType<typeof getStaticProps>
type="submit"
disabled={isAddToCartButtonDisabled}
className={clsx(
"w-full bg-blue-600 border border-transparent rounded-md py-3 px-8 flex items-center justify-center text-white hover:bg-blue-700 focus:outline-none",
"w-full bg-blue-600 border border-transparent rounded-md py-3 px-8 flex items-center justify-center text-md text-white hover:bg-blue-700 focus:outline-none",
isAddToCartButtonDisabled && "bg-gray-400 hover:bg-gray-400"
)}
>
Expand Down

0 comments on commit 95a3f53

Please sign in to comment.