Currently facing an unusual bug that has me stumped.
In my application, I've implemented Meyers reset. However, when I attempt to modify the h1 font size in my main CSS file, it doesn't take effect. Strangely enough, if I place the change within the body tag, it works perfectly fine. Can anyone shed light on this for me?
For example:
base.css.scss
h1 {
font-size: 2em; //-- The change does not take effect
}
body {
width: 100%;
height: 100%;
h1 {
font-size: 2em; //-- Works as expected
}
}