Bootstrap Import Reihenfolge
// Bring your _variables.scss in first. The variables are defined with !default in the bootstrap _variables.scss file which means to use their value unless the value has already been defined.
// Bring in bootstrap
// Next mixins - prioritize your overwrites before other components that depend on them that you want to overwrite.
// Next overwrites (like navbar, buttons, alerts, etc)
// Finally, your own styles
// Note, I don't pull bootrap in with npm so you'd just reference the correct path in your the second import below.
@import "variables";
@import "bootstrap-sass/bootstrap";
@import "mixins";
@import "overwrites";
@import "style"