There’s a bug in the CSS constants class generator that doesn’t allow two distinct classes, capitalized differently, to exist, because we capitalize our identifiers.
Example: .button
and .Button
cannot both exist in any of the css files in the entire solution because our generator produces the same identifier, Button
, for them.