user5436320
user5436320

Reputation: 133

import bootstrap-sass to scss file

How to import bootstrap-sass to scss file? without compass, without rails, without etc. I just only have 2 files, .html and .scss (which later will be generated to css). I know there's a lot questions how to import bootstrap-sass but everything use rails or compass

I already gem install bootstrap-sass, but I don't know what shall I do afterthat

Upvotes: 1

Views: 781

Answers (1)

Shiva
Shiva

Reputation: 12592

In your .scss file

// Import Bootstrap Compass integration
@import "bootstrap-compass"

// Import custom Bootstrap variables
@import "bootstrap-variables"

// Import Bootstrap for Sass
@import "bootstrap"

make sure you give proper path to your .scss libraries of bootstrap. and the ordering of the inclusion is important.

Upvotes: 1

Related Questions