I have class CommonContainer in styles/Containers.module.css
.CommonContainer {
max-width: 1440px;
margin: 0 auto 72px auto;
padding-left: 80px;
padding-right: 80px;
}
And I compose it to another class
.topPostContainer {
composes: CommonContainer from "../../styles/Containers.module.css";
margin-top: 56px;
}
But after NextJS building "margin-top: 56px;" not sets into component with .topPostContainer
In safari console I view
Dev mode nextJS - correct.
After building.
This only happens after the project has been built.
What could go wrong and how to fix it? Maybe someone has encountered something like this
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…