Questions tagged [bootstrap-sass]

A Sass-powered version of Bootstrap, ready to drop right into your Sass powered applications.

Overview

Bootstrap Sass is a Sass-powered version of Bootstrap, ready to drop right into your Sass powered applications.

Installation

You can install it in a project using:

Usage

Import Bootstrap Sass into a Sass file to get all styles, variables and mixins :

@import "bootstrap";

You can also import components explicitly.

Links

Related tags




304 questions
1
vote
0 answers

Rails asset precompiling

I am trying to set up Rails 5 with bootstrap-sass. app/assets/application.scss: @import "bootstrap-sprockets"; @import "bootstrap"; config/initializers/assets.rb: Rails.application.config.assets.version =…
1
vote
1 answer

rails bootstrap-sass font 404 error on staging

I have some problems with bootstrap glyphicons font on staging env with rails. The server could find font files before, just recent the server suddenly could not find those font files after deploying with capistrano on staging (I am pretty sure I…
bf39L
  • 149
  • 2
  • 14
1
vote
1 answer

Jquery issue setting up Bootstrap SASS with gulp

I am trying to setup a project that will compile my sass files using twitter bootstrap. My project looks like this: And my gulpfile looks like this: var gulp = require('gulp'); var sass = require('gulp-sass'); var autoprefixer =…
Guerrilla
  • 13,375
  • 31
  • 109
  • 210
1
vote
1 answer

How to deal with fonts in bootstrap-sass and compass? How to include fonts on the page correctly?

In my Node.js app I use bootstrap-sass and Compass. Not gulp-compass and tasks, but exactly Compass, I have Compass' config.rb file in app's root dir. I compile my assets with these commands: $ compass watch $ compass compile And I don't understand…
Green
  • 28,742
  • 61
  • 158
  • 247
1
vote
1 answer

How can I update bootstrap version in Compass.app?

I'm using Compass.app GUI application on windows. By default I am having options to create new project with bootstrap-sass 3.2.0.1. How can i update this to bootstrap-sass 3.3.6?
Sivadass N
  • 917
  • 4
  • 12
  • 23
1
vote
1 answer

Why doesn't bootstrap-sass work with Rails?

I've added bootstrap-sass to my gemfile. I've followed the instructions here https://github.com/twbs/bootstrap-sass. Modifications have been made to the javascript/application.js.scss and stylesheet/application.css.scss files per the above…
4thSpace
  • 43,672
  • 97
  • 296
  • 475
1
vote
2 answers

Link does not work after resize of window

I have a page with bootstrap div's and 2 images and buttons on the page. In full screen, the page works fine. But when I resize the page only one of the images and 1 of the 2 buttons work. The images are side by side in full screen but when they…
SupremeA
  • 1,519
  • 3
  • 26
  • 43
1
vote
0 answers

Using bootstrap-sass-loader for webpack, it continues to to silently not write style.css file

I've put together a list of files that would normally be requested: webpack.config.js package.json bootstrap-sass.config.js output.txt https://gist.github.com/robertkraig/4e1440e6048805e20312 For the life of me, I've spent atleast 2 weeks trying…
krob
  • 103
  • 1
  • 5
1
vote
0 answers

How to to modify grid gutter width in bootstrap sass for different resolutions?

I am using Twitter Bootstrap SASS 3. I want the grid gutter width to be 20px in tablets (screen-sm), 30px in desktop (screen-md and higher). I have the variable $grid-gutter-width = 30 Then I wrote @media (min-width: $screen-sm-min) { …
Marc
  • 321
  • 4
  • 7
1
vote
1 answer

How to correctly include webfonts into a bootstrap-sass project?

I created a bootstrap-sass project with yeoman generator. I want to add a webfont and everytime I compile my scss code I get the following error: error app/src/stylesheets/main.scss (Line 25: File not found or cannot be read: …
1
vote
1 answer

Customising Bootstrap path with grunt-sass

I've installed bootstrap-sass and grunt-sass, and want to customise the bootstrap components included in my build. I've created a copy of _bootstrap.scss in my app/styles/ folder and need to override the default import paths - what changes do I need…
Nathan
  • 949
  • 1
  • 20
  • 35
1
vote
0 answers

Properly using HTML, CSS, and Bootstrap for a large app

I've been using CSS for about 8 years - professionally for 1 year. I'm comfortable with Bootstrap, Foundation, and Sass. I get that Bootstrap is there to create website that 'adjust' and have consistent markup. I've always been under the…
user1464581
  • 377
  • 2
  • 10
1
vote
0 answers

importing bootstrap-sass with bower within mean.js application

I am trying to follow this tutorial , I am not able to resolve the issue that the import of bootstrap does not work with the following error: Error: File to import not found or unreadable:…
glmodon
  • 33
  • 4
1
vote
1 answer

Upgrading bootstrap-sass to 3.3.4 causes loss of glyphicons in bootstrap with Rails. Why?

Rails 4.2 and boostrap-sass 3.3.4 Everything was working fine in 3.3.3, but after upgrading to 3.3.4, I get 403 forbidden errors when my site tries to access bootstrap's glyphicons fonts. How do I fix? My app/assets/stylesheets/application.scss…
croceldon
  • 4,511
  • 11
  • 57
  • 92
1
vote
1 answer

Using two different versions of Gems

For a Rails4 application I want to use different version of bootstrap-sass gem (I have two different layouts, one is Bootstrap 2.3.2 and the other is Bootstrap 3). The only way I can think is create custom groups at the gemfile, and requiring a…
mentalic
  • 965
  • 2
  • 14
  • 30