Next.js Discord

Discord Forum

Better CSS support for Next?

Unanswered
Gecco posted this in #help-forum
Open in Discord
Am I doing something wrong? There are a lot of global CSS things I want to apply beyond classes in CSS that can't be added in Next. Is there a way to add things like media queries? Thanks

2 Replies

what do you mean @Gecco can you plz desribe in more detail?
@Gecco Am I doing something wrong? There are a lot of global CSS things I want to apply beyond classes in CSS that can't be added in Next. Is there a way to add things like media queries? Thanks
you can still create a (for example) global.css and write everything what you need inside this file. Then you can import it directly into your page (or where needed) like this:
import "./globals.css";

Everything within this component and everything nested in it will have the css styles