Currently I am using Angular 5 to make an SPA.
I want to fill the entire screen with a background (not just one component) but I want different backgrounds for each page, how can I achieve this?
I have tried this code in the component.css of the concerning page (for example home.component.css):
body {
background-color: aqua;
}
(using background-color as an example)
Using this method, I thought I could override the main body background per component but it does not seem to work, the page remains empty.
I would appreciate any help you can give me, thanks in advance.