Looking to enhance the spacers in Bootstrap 5 by incorporating it into Sass and customizing the variables.
I'm aiming to avoid redundantly defining Bootstrap's spacer options, which are as follows:
$spacers: (
0: 0,
1: $spacer * .25,
2: $spacer * .5,
3: $spacer,
4: $spacer * 1.5,
5: $spacer * 3,
);
Based on the documentation, I should be able to extend an existing map without re-declaring current variables:
https://i.sstatic.net/imso4.png
I'd rather not re-declare; I simply want to append an extra item like this:
https://i.sstatic.net/XWqok.png
Is this feasible?
Thank you for taking the time to read my inquiry.