Customizing Bootstrap with SASS for Beginners

Option B: Include parts of Bootstrap

2025-04-14

Written by: tdtc

git clone -b v4.6.2 --single-branch https://github.com/twbs/bootstrap.git

scss

//custom.scss

@import "../bootstrap/scss/functions";
@import "../bootstrap/scss/variables";
@import "../bootstrap/scss/mixins";

@import "../bootstrap/scss/buttons";
//@import "../bootstrap/scss/nav";

install sass

npm install -g node-sass
npm install -g sass@1.77.6

Gen

sass custom.scss custom.css
node-sass custom.scss custom.css

Ref