0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

Making the customization option docs cleared about variable overrides with !default flag

This commit is contained in:
Moris Zen Pasic 2017-09-21 15:17:41 +02:00 committed by Johann-S
parent 2693e49e06
commit d66f47d099

View File

@ -8,7 +8,7 @@ toc: true
## Customizing variables
Every Sass variable in Bootstrap 4 includes the `!default` flag, meaning you can override that default value in your own Sass even after that original variable's been defined. Copy and paste variables as needed, modify the values, remove the `!default` flag, and recompile.
Every Sass variable in Bootstrap 4 includes the `!default` flag, meaning you can override that default value in your own Sass. Copy and paste variables as needed, modify the values, remove the !default flag, and recompile. If a variable has already been assigned, then it won't be re-assigned by the default values in Bootstrap. This means that your modified Sass variables should be called before you import Bootstrap Sass files.
For example, to change out the `background-color` and `color` for the `<body>`, you'd do the following: