Hi and thank You for the template, so I could debug my code with the tailwind v4 update. The Problem starts, when I import another scss inside styles.scss and make changes inside of it.
styles.scss:
@use "./more";
more.scss:
html {
background-color: #bada55;
}
change more.scss
html {
background-color: deeppink;
}