For some reason, I can't add new spacers to Bootstrap (4.3) in my SCSS file.In the HTML my custom style sheet comes after bootstrap.css.
And in my SCSS the order is like so
$spacer: 1rem !default;
$spacers: () !default;
$spacers: map-merge((6: ($spacer * 4),
7: ($spacer * 5)), $spacers);
/*
* Bsp imports
*/
@import "node_modules/bootstrap/scss/functions";
@import "node_modules/bootstrap/scss/mixins";
@import "node_modules/bootstrap/scss/reboot";
@import "node_modules/bootstrap/scss/variables";
/*
Now, either I been staring down a too tall glass of Madeira, or I'm missing something obvious! In either case, thanks in advance.