Next.js Discord

Discord Forum

Make everything bigger

Answered
kolioaris posted this in #help-forum
Open in Discord
Simple question. How can I make everything in the site a little bit bigger? Thanks in advance.
Answered by Western paper wasp
try increase the base font size (rem), not transform: scale(...), it breaks layout, clicks and positioning.

Documentation MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
View full answer

8 Replies

change scale of everything
could be done with *{} in css
Thank you!
Western paper wasp
try increase the base font size (rem), not transform: scale(...), it breaks layout, clicks and positioning.

Documentation MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
Answer
Western paper wasp
Yes. Tailwind config:
theme: {
fontSize: {
base: '18px',
},
}

You can also scale via rem, Tailwind is based on them by default

shadcn:
Yes, it works without any issues, because shadcn/ui also uses rem and Tailwind tokens.