I am encountering an issue with my Angular 5 application. After running ng b --prod
, I am seeing the following warnings:
Warning in Invalid selector '; .space1x at 6219:39. Ignoring.
The CSS style for space1x
in style.css is as follows:
.space1x {
padding-left: 200px;
}
However, when inspecting the deployed CSS (styles.75b74.bundle.css), the style space1x
is missing.
Can someone help me understand what might be causing this issue?