Mir Nazim
Mir Nazim

Reputation: 626

Is there any well maintained and timely updated compass/sass bootstrap project

Is there any well maintained and timely updated compass/sass bootstrap project.

I know a couple of projects on githib but 1) it's very difficult to find the original repo in the jungle of forks and 2) most repos are old and not tracking the latest Bootstrap versions.

Therefore, I turn to you - Oh mighty and wise stackoverflow community.

Upvotes: 5

Views: 850

Answers (2)

fk_
fk_

Reputation: 1436

As Sara pointed out, bootstrap-sass is the more active of the two and its v2.1.0.0 seems to match the latest Bootstrap release quite well – I've been using it in production for a few days now without noticing any serious porting issues, and the few there are are taken care of.
Overwriting Bootstrap's default variables by using their SASS-versions worked flawless as well as using some of Bootstrap's mixins, though I haven't began working on the grid yet.

Tracking back,

– so I'm under the impression that the project does its best to keep up-to-date with Bootstrap itself. I haven't had to make the decision for bootstrap-sass myself – it was already decided before I came into the project.

"Twitter Bootstrap, Less, and Sass: Understanding Your Options for Rails 3.1", a very informative article on the topic looking in detail at

mentions another gem worth looking at: bootstrap-rails, which also makes use of SASS and matches Twitter Bootstrap v2.1.1 – seems its release-dates even beat the previously mentioned.

Upvotes: 2

Sara
Sara

Reputation: 8242

The most popular options appear to be:

Related answer

Upvotes: 2

Related Questions