September 2017
Intermediate to advanced
450 pages
11h 24m
English
We can customize exactly which Bootstrap files are loaded in our application by copying the contents of /node_modules/bootstrap/scss/bootstrap.scss and customizing their import paths so that they use our advanced sass-loader mechanism instead:
// Core variables and mixins@import "~bootstrap/scss/variables";@import "~bootstrap/scss/mixins";@import "~bootstrap/scss/custom";// Reset and dependencies@import "~bootstrap/scss/normalize";@import "~bootstrap/scss/print";// Core CSS@import "~bootstrap/scss/reboot";@import "~bootstrap/scss/type";@import "~bootstrap/scss/images";@import "~bootstrap/scss/code";@import "~bootstrap/scss/grid";@import "~bootstrap/scss/tables";@import "~bootstrap/scss/forms";@import "~bootstrap/scss/buttons" ...
Read now
Unlock full access