There is a predefined background in the app that remains consistent across all pages and is set in the main css file.
I am looking to replace that background on one specific page. How can I accomplish this? I have specified an id "body-m" for the body in the index.
The HTML structure is as follows -
<body ng-app="app" id="body-m">
<div class="container-m">
<section ng-view id="content-m"></section>
</div>
</body>
My page is loaded within the ng-view. What steps do I need to take to change the background solely for my page?
Thank you