I cant seem to get the default css to work in my next 13 project. I have a page.modules.css file and i'm using classname = styles.style
page.tsx
import styles from'./page.module.css'
export default function Home() {
return (
<div className={styles.testStyle}>
send help
</div>
)
}
page.module.css
.testStyle {
border-width: 2;
border-color: #990099;
}