- Issue created by @JFKiwad
- Status changed to Fixed
almost 2 years ago 10:47am 16 March 2023 Automatically closed - issue fixed for 2 weeks with no activity.
In _init.scss, the bootstrap functions import must be put before both variables files. The reason is that variables.scss uses a shift-color() function.
@import 'base/variables';
// Required
@import '~bootstrap/scss/functions';
@import '~bootstrap/scss/variables';
@import '~bootstrap/scss/maps';
@import '~bootstrap/scss/mixins';
@import 'base/mixins';
// Optional if using rfs()
@import '~bootstrap/scss/vendor/_rfs.scss';
@import '~bootstrap/scss/functions';
@import 'base/variables'; // Custom
@import '~bootstrap/scss/variables';
@import '~bootstrap/scss/maps';
@import '~bootstrap/scss/mixins';
@import 'base/mixins'; // Custom
// Optional if using rfs()
@import '~bootstrap/scss/vendor/_rfs.scss';
Fixed
5.0
Code
Automatically closed - issue fixed for 2 weeks with no activity.