When styling a Next.js app, is it necessary to use
import styles from "./stylesheet.css"
and apply classes with className={styles.aClassName}
?
If so, what if I need to style an element by ID or tag name?
Is there a way to style a Next.js app like a regular React app? For example, using
import "./stylesheet.css"
and className="aClassName"
.