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
36
votes
8 answers

Can't get CSS working on Heroku using Rails 4 with bootstrap-sass gem

I have deployed an app to Heroku with one issue I can't seem to get figured out. The CSS for the app via Bootstrap-sass does not load up thus I have an un-styled app. At the moment this is just a collection of static pages. I have followed all but…
Kevin Dark
  • 2,139
  • 5
  • 22
  • 23
30
votes
4 answers

Incompatible units: 'rem' and 'px' - Bootstrap 4 and Laravel Mix

I just installed a fresh Laravel 5.4, and bootstrap 4 alpha 6. Laravel mix wont compile SASS: Here is one error: Module build failed: ModuleBuildError: Module build failed: $input-height: (($font-size-base *…
Nicolae Casîr
  • 892
  • 1
  • 10
  • 18
27
votes
4 answers

rails bootstrap-sass assets compilation error - undefined variable alert-padding

all roads point to bootstrap-sass Referral chain: railscast-328 (twitter bootstrap basics) refers to http://www.sitepoint.com/twitter-bootstrap-less-and-sass-understanding-your-options-for-rails-3-1/ which refers to…
xxjjnn
  • 14,591
  • 19
  • 61
  • 94
17
votes
3 answers

bootstrap-sass: Undefined variable: "$baseLineHeight"

I've integrated bootstrap into my app using bootstrap-sass. The app works fine on my local machine, but when I go to deploy via capistrano, I get this error: Undefined variable: "$baseLineHeight". (in…
Tyler DeWitt
  • 23,366
  • 38
  • 119
  • 196
15
votes
7 answers

Bootstrap shown.bs.tab event not working

I'm using the Flexy template (using bootstrap) and I can't get the shown.bs.tab event on tab to work. I've managed to make it work on JSFiddle. Here is the code I use in my template that produce nothing :
15
votes
8 answers

Rails 4 + bootstrap set up assets

I am trying to setup bootstrap on Rails4 using bootstrap-sass and I am getting this famous error: Sprockets::FileNotFound - couldn't find file 'bootstrap' (in app/assets/javascripts/application.js:16): I have tried following: twitter/bootstrap…
14
votes
3 answers

Vue.js + Webpack + vue-loader + bootstrap-sass + sass-loader

I'm just getting started with Vue.js + Webpack + vue-loader + bootstrap-sass + sass-loader and I'm a little lost. What I'd like to do is use the SASS version of bootstrap with my SPA Vue.js code. I want to do this so my bootstrap customisations can…
rstuart85
  • 2,035
  • 2
  • 15
  • 19
13
votes
3 answers

How to use twitter bootstrap with bootstrap-sass in rails app?

I'm quite new to this, but i cannot figure out the problem. In twitter bootstrap i would use :
Column1
Column2
And it all works fine. But i do not want to write…
gerasalus
  • 7,538
  • 6
  • 44
  • 66
12
votes
4 answers

Deprecation Warning in Bootstrap SCSS

I am trying to create custom bootstrap by importing only the required components into a style.scss file from bootstrap sass. However, I get a chain of many Deprecation Warnings when I import and compile the 3 required components. SCSS: @import…
deekeh
  • 675
  • 1
  • 6
  • 21
11
votes
1 answer

bootstrap-sass multiselect event conflict

I've got a strange issue using bootstrap-sass and bootstrap-multiselect. Seems like bootstrap-sass event handlers block multiselect handlers for dropdown etc. This packages installed via…
11
votes
2 answers

Cannot get bootstrap-sass to work with webpack

Im following the instrtuctions on the bootstrap-sass-loader page in my package.json I got "bootstrap-sass": "^3.3.6", "bootstrap-sass-loader": "^1.0.9" this is my webpack.config.js module.exports = { entry: ['./app.js'], output: { …
MJB
  • 3,934
  • 10
  • 48
  • 72
11
votes
1 answer

Can't Precompile Assets Rails 4 bootstrap-sass DXImageTransform error

Im trying to precompile assets for production. Unless I include the bootstrap and font-awesome assets as static files (or host from CDN) sass-rails fails when trying to compile assets on production. My Gemfile looks like this: # Default asset…
doug
  • 1,963
  • 2
  • 16
  • 24
11
votes
3 answers

Bootstrap 3.1.0 modal sizing not applied

After updating my bootstrap-sass gem to 3.1.0 to take advantage of the new sizing options on modals (.modal-lg and .modal-sm), I've been unable to get the styling to be applied. My code is as follows:
Jonathan Bender
  • 1,911
  • 4
  • 22
  • 39
11
votes
4 answers

how does $icon-font-path works in bootstrap scss?

I recently started using bootstrap SCSS on my node project. So I have app/bower_components/bootstrap-sass/lib/_glyphicons.scss for example. Looking at my CSS output I see things like: @media…
guy mograbi
  • 27,391
  • 16
  • 83
  • 122
11
votes
4 answers

Create new Twitter Bootstrap buttons with Bootstrap-Sass in Rails?

I'm trying to create new Twitter Bootstrap buttons in my Rails app so I don't have to override the old ones. Using the Bootstrap-Sass gem, I've figured out how to override the default buttons like so (to make the btn-warning class 'Twitter…
1
2 3
20 21