Skip to content

Commit

Permalink
remove custom font sizes to inherit default ones
Browse files Browse the repository at this point in the history
  • Loading branch information
pettinarip committed Jan 17, 2025
1 parent 160656a commit 442a2e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/stablecoins.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,14 +207,14 @@ const H2 = ({
className,
...props
}: BaseHTMLAttributes<HTMLHeadingElement>) => (
<h2 className={cn("mb-8 mt-12 text-2xl md:text-3xl", className)} {...props} />
<h2 className={cn("mb-8 mt-12", className)} {...props} />
)

const H3 = ({
className,
...props
}: BaseHTMLAttributes<HTMLHeadingElement>) => (
<h3 className={cn("mb-8 mt-10 text-xl md:text-2xl", className)} {...props} />
<h3 className={cn("mb-8 mt-10", className)} {...props} />
)

const StablecoinsPage = ({ markets, marketsHasError }) => {
Expand Down

0 comments on commit 442a2e6

Please sign in to comment.