AshSimmonds
06/01/2022, 5:10 PMcontent.scss
is now over-riding my custom.css
and I can't seem to fix it even with !important
, making me unable to change my font-size stuff.
Is this due to "file" calling order and has changed? It was working properly <24 hours ago before v0.97
.AshSimmonds
06/01/2022, 5:25 PM_app.js
works, but (after prettier) my custom.css
is being called on line 20,914, then content.scss
is being called on line 27,396 which completely eliminates any of my custom stuff if it appears in there.SeriousBug
06/01/2022, 5:39 PMSeriousBug
06/01/2022, 9:08 PMcontent.scss
is not overriding anything I have set.AshSimmonds
06/01/2022, 10:35 PMfont-size
for one.SeriousBug
06/02/2022, 9:04 PMcss
main.main-content {
font-size: 1.25rem;
}
AshSimmonds
06/02/2022, 9:54 PMcustom.css
should be the first source of truth, with all others a fallback option.SeriousBug
06/02/2022, 9:57 PMAshSimmonds
06/02/2022, 10:05 PMcustom.css
the final say for the user. Took me an hour of spelunking through obfuscated code to figure out why my stuff didn't work - most folk will hit that wall much earlier and deflect to something easier.