I am currently working on an Angular 7 project where I have a requirement to dynamically load a component using routes. However, when I try to add styles for the body tag and existing component tags in the dynamically loaded component style-sheet, they do not seem to reflect in the DOM.
body {
padding-bottom: 150px;
}
Although the styles are present in the dynamically loaded component style-sheet, they are not being applied to the DOM elements as expected.