Syntax error: Selector "li" is not pure (pure selectors must contain at least one local class or id)
This error indicate that you cannot have global selector such as ul or li definite in module.css. You must have a specific classname as shown in example below:
.productInfo {
font-size: 12pt;
font-weight:bold;
}
.productDescription {
font-size: 10pt;
}
Comments