Currently, I am facing a challenge in setting the background-image for a specific Angular component. The code snippet I have been using is as follows:
body {
background-image: url(...);
background-size: cover;
background-repeat: no-repeat; }
This code resides within the .css file associated with the Angular component.
However, upon inspecting the browser console, it became apparent that the _reboot.scss class (presumably from Bootstrap) is taking precedence and overriding my custom background settings with a default background-color.
Various attempts have been made to rectify this issue, but the only successful method so far has involved manually adjusting the _reboot.scss class within the browser's F12 debugging mode.