1// BMC Helpers must be imported before Bootstrap helpers to
2// take advantage of Bootstrap's use of the Sass !default
3// statement. Moving this helper after results in Bootstrap
4// variables taking precedence over BMC's
5@import "./bmc/helpers";
6@import "./vendor/bootstrap/helpers";
7
8// BMC Base files must follow Bootstrap base files
9// to assure BMC base styles override Bootstrap base files
10@import "./vendor/bootstrap/base";
11@import "./bmc/base";
12
13// Conmponents and Utilities from the third-party
14// libraries follow base files
15@import "./vendor/bootstrap/components";
16@import "./vendor/bootstrap/utils";
17@import "./vendor/bootstrap-vue/index";
18
19// Vendor overrides must be the last file imported
20@import "./vendor-overrides/bootstrap/index";
21@import "./vendor-overrides/bootstrap-vue/index";
22