how i can change font sizes? #27
-
Hi how i can set font size? i need to change main menu font size plus the font itself. how i do that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
HI @agaitan026, the font size of the menu looks like it's the default 16px. If you want to change it, it's in The website font is in |
Beta Was this translation helpful? Give feedback.
HI @agaitan026, the font size of the menu looks like it's the default 16px. If you want to change it, it's in
src/components/common/HeaderWidget.tsx
. You can update the font there a few different ways, like with inline CSS or with the Tailwind classes.The website font is in
app/layout.tsx
. You can see the Inter font is imported on line 10 (as CustomFont) and then referenced on line 13 and then line 29 when it's added as a property of the element. The reference for importing Google fonts in Next.js is here: https://nextjs.org/docs/pages/building-your-application/optimizing/fonts which might help