Fix documentation rendering bug
Component documentation was not rendering the components correctly
because the rulesets created to override Bootstrap default styles were
not being imported.
- Import bootstrap and bootstrap-vue overrides
- Add Bootstrap reboot styles to fix icon button alignment
Signed-off-by: Derick Montague <derick.montague@ibm.com>
Change-Id: I68665e60935bd9c3aeb6c14a932648805744c53f
diff --git a/docs/.vuepress/styles/_bmc-overrides.scss b/docs/.vuepress/styles/_bmc-overrides.scss
index e69de29..c8edbdf 100644
--- a/docs/.vuepress/styles/_bmc-overrides.scss
+++ b/docs/.vuepress/styles/_bmc-overrides.scss
@@ -0,0 +1,2 @@
+@import "src/assets/styles/vendor-overrides/bootstrap/index";
+@import "src/assets/styles/vendor-overrides/bootstrap-vue/index";
\ No newline at end of file
diff --git a/docs/.vuepress/styles/_bootstrap.scss b/docs/.vuepress/styles/_bootstrap.scss
index 31a5f34..aece8f7 100644
--- a/docs/.vuepress/styles/_bootstrap.scss
+++ b/docs/.vuepress/styles/_bootstrap.scss
@@ -4,6 +4,7 @@
@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";
@import "~bootstrap/scss/root";
+@import "~bootstrap/scss/reboot";
@import "~bootstrap/scss/alert";
@import "~bootstrap/scss/badge";
@import "~bootstrap/scss/breadcrumb";