Skip to content

Commit

Permalink
fix: paragraph text on smaller devices
Browse files Browse the repository at this point in the history
  • Loading branch information
Firgrep committed Sep 25, 2024
1 parent 6b7bde4 commit d1c5476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Paragraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Paragraph = ({ children, style = "base" }: ParagraphProps) => {
case "grotesk":
return (
<p
className={`${baseClasses} text-center text-xl md:text-2xl font-space-grotesk max-h-[112px] md:max-h-[96px] w-[315px] md:w-[600px]`}
className={`${baseClasses} text-center text-lg sm:text-xl md:text-2xl font-space-grotesk max-h-[112px] md:max-h-[96px] w-[315px] md:w-[600px]`}
>
{children}
</p>
Expand Down

0 comments on commit d1c5476

Please sign in to comment.