user1937021
user1937021

Reputation: 10791

where is the bootstrap-responsive.css file?

I am using bootstrap sass:

https://github.com/twbs/bootstrap-sass

but where is the boostrap-responsive.css file? I'm trying to add the classes row-fluid to make a layout as shown in this link, but no classes are being picked up.

jsfiddle.net/SxcqH/52/

Upvotes: 0

Views: 384

Answers (2)

petermchugh
petermchugh

Reputation: 11

As there is no bootstrap-responsive.css within Bootstrap 3.x, the .css is separated for each of the elements within the /assets/stylesheets/bootstrap folder, called and imported by the _bootstrap.scss.

Upvotes: 1

Lars Behnke
Lars Behnke

Reputation: 1901

Bootstrap 3.x has no "boostrap-responsive.css" file anymore. All responsive classes are now being compiled into a single css file. Bootstrap for Sass is currently based on Twitter Bootstrap 3.3.4.

See also this question.

Upvotes: 0

Related Questions