After hearing lots of good things about Grav, I’m trying to migrate my site over from a GetSimple setup. Mostly going well so far, but I’m struggling a bit with theming. As per the documentation, I’ve set up a mytheme
that inherits everything from antimatter (including copying over template.scss
), and started overriding the things I want to change.
What’s got me stumbling now is overriding parameters under antimatter/scss/configuration
– in my current example, I want to override $footer-height
. I’ve tried putting my custom setting both into mytheme/scss/template/_custom.scss
(which is where the documentation says overrides should go), as well as in mytheme/scss/configuration/template/_custom.scss
or even mytheme/scss/configuration/template/_variables.scss
(the latter two options made sense to me in terms of loading them early enough to be accessible for use in other scss files).
Any help would be appreciated. (And I know I could just duplicate the entire antimatter theme and start editing the source, but that sort of defeats the purpose)