1
0
Fork 0
mirror of https://github.com/twbs/bootstrap-sass.git synced 2022-11-09 12:27:02 -05:00

Added note to readme about variable definition

This commit is contained in:
Thomas McDonald 2011-12-02 22:23:53 +00:00
parent f9129ee848
commit 2031aa5ce0

View file

@ -16,6 +16,13 @@ In your SCSS file of choice:
@import "bootstrap"; /* Use this to get all of Bootstrap's @mixins and $variables */
Want to configure a variable? Thanks to bernado, this is now awesome *and* easy! Just define the variables you want to change *before* importing Bootstrap. SASS will respect your existing definition and won't overwrite it with the Bootstrap defaults.
$gridColumns: 12;
$gridColumnWidth: 60px;
$gridGutterWidth: 20px;
@import "bootstrap";
### Javascript
In your Javascript manifest: