Currently I'm building a template that will be used by multiple people on different projects. So making this work instantly without changing things per project install is crutial.
For this instance I want to change the $spacer
variable that is used for all the margings
and paddings
classes that Bootstrap offers. But I cant seem to figure out how to change the $spacer
variable outside of the /node_modules
. I have an own _variables.scss
that creates variables for the theme but an !important
or anything else wont work eventhough the custom _variables.scss
is loaded later that the bootstrap from the node modules.
Is there a way to send a scss file to the node_modules file so it changes the variables from within? or is there a different way to overwrite a variable from the node modules?