I am trying to make an Agular app, and I want certain components to have certain background images. So I tried in the .ts files
encapsulation: ViewEncapsulation.None
And in the .scss file
body { background-image:url (...) }
The problem is that when I move from one page to another the background of the first page is on the second one until I hit refresh. ( I tried to put !important also :D)
Thanks for your time!