Is it possible in one CSS Module to use a class from another CSS Module?
The problem is that CSS Modules is doing it's own class names translation and so .class from A.css will become A-module--class-something and .class from B.css will become B-module--class--somethingElse and they will be treated as separate classes.
A.css
.class {
(...)
}
B.css
/* .class is the same class as in A.css */
.class > .someOtherClass {
}
