mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
SASS -> Sass
This commit is contained in:
parent
96fec83644
commit
24eeb3c3b2
3 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
# Bootstrap for SASS
|
||||
# Bootstrap for Sass
|
||||
|
||||
`bootstrap-sass` is an SASS-powered version of [Twitter's Bootstrap](http://github.com/twitter/bootstrap), ready to drop right into your SASS powered applications.
|
||||
`bootstrap-sass` is an Sass-powered version of [Twitter's Bootstrap](http://github.com/twitter/bootstrap), ready to drop right into your Sass powered applications.
|
||||
|
||||
Enjoy.
|
||||
|
||||
|
@ -20,11 +20,11 @@ In your Gemfile:
|
|||
|
||||
#### CSS
|
||||
|
||||
Import "bootstrap" in your SCSS file of choice to get all of Bootstrap's styles, mixins and variables! Don't use Sprocket's `//= require` directives for SASS files, because they're horrible and will kill your cat.
|
||||
Import "bootstrap" in your SCSS file of choice to get all of Bootstrap's styles, mixins and variables! Don't use Sprocket's `//= require` directives for Sass files, because they're horrible and will kill your cat.
|
||||
|
||||
@import "bootstrap";
|
||||
|
||||
Need to configure a variable or two? Simple define the value of the variable you want to change *before* importing Bootstrap. SASS will be awesome and respect your existing definition rather than overwriting it with the Bootstrap defaults. A list of customisable variables can be found in the [Bootstrap documentation](http://twitter.github.com/bootstrap/less.html#variables).
|
||||
Need to configure a variable or two? Simple define the value of the variable you want to change *before* importing Bootstrap. Sass will be awesome and respect your existing definition rather than overwriting it with the Bootstrap defaults. A list of customisable variables can be found in the [Bootstrap documentation](http://twitter.github.com/bootstrap/less.html#variables).
|
||||
|
||||
$primaryButtonBackground: #f00;
|
||||
@import "bootstrap";
|
||||
|
|
|
@ -3,7 +3,7 @@ Gem::Specification.new do |s|
|
|||
s.version = '2.0.1'
|
||||
s.authors = ["Thomas McDonald"]
|
||||
s.email = 'tom@conceptcoding.co.uk'
|
||||
s.summary = "Twitter's Bootstrap, converted to SASS and ready to drop into Rails or Compass"
|
||||
s.summary = "Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass"
|
||||
s.homepage = "http://github.com/thomas-mcdonald/bootstrap-sass"
|
||||
|
||||
s.add_development_dependency 'compass'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
description "Bootstrap for SASS"
|
||||
description "Bootstrap for Sass"
|
||||
|
||||
# Stylesheet importing bootstrap
|
||||
stylesheet 'styles.scss'
|
||||
|
|
Loading…
Reference in a new issue