/* stylelint-disable scss/at-import-no-partial-leading-underscore */
// Consumers should be able to resolve bootstrap/ to node_modules/bootstrap

//Make bootstrap functions available for use in overrides
@import 'bootstrap/scss/_functions.scss';
@import './bootstrap_overrides.scss';

//_variable imports come after bootstrap default overrides,
// makes all other variables and mixins from bootstrap available
/// with just importing customer.scss
@import 'bootstrap/scss/_variables.scss';
@import 'bootstrap/scss/_mixins.scss';

//New variables come after imports
@import './new_variables.scss';
@import './util.scss';
