Answer the question
In order to leave comments, you need to log in
How composes works in css-modules?
Hello. I started using css-modules and ran into this question, shouldn't composes merge classes into one?
Now it works like this:
.basic {
border: none;
background: transparent:
}
.primary {
composes: basic;
color: white;
background: blue;
}
.sizeM {
height: 40px;
padding: 0 20px;
}
на выходе получаю:
.button_primary_3Xd_0
.button_basic_3xC_0
.button_sizeM_15a_0
Answer the question
In order to leave comments, you need to log in
Unfortunately not, if you use only the .primary class, then the output will be something like
and css will have both classes
.button_primary_3Xd_0 {
color: white;
background: blue; /* переопределяет свойство из basic */
}
.button_basic_3xC_0 {
border: none;
background: transparent:
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question