I'm trying to change the background color of the <body>
which has already been set. How can I override this body background-color and apply a new color to it? The div contained within the body needs to override the body's background color.
Example:
HTML:
<body class="body-class">
<div class="div-class">
</div>
</body>
SASS:
body.body-class {
background-color: setcolor(white);
.div-class {
background-color: setcolor(blue);
}
}
Now I expect the background-color to be blue but it's still white?