Currently utilizing Angular v10, I have a set of CSS styles that are meant to be used across the entire application. To achieve this, I added them to our global styles.css file. However, I'm encountering an issue where the CSS is not being applied to other components. Interestingly, when I place the same CSS in the component-specific CSS files, it works perfectly fine. After some investigation, I found that setting ViewEncapsulation.None on specific components resolved the issue for one component but not others. For reference, here is a link to my angular.json file: angular.json
This situation is something I have never encountered before in any of my previous Angular projects. I am unsure if this could potentially be related to newer versions of Angular or if there is a mistake on my end. Any assistance on this matter would be greatly appreciated!