2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Fix use of LESS var syntax in docs when referencing SCSS

Example:
> ... SCSS variables (e.g., `@enable-gradients: true`) ...
Referenced SCSS but used the LESS syntax. Changed to:
> ... SCSS variables (e.g., `$enable-gradients: true`) ...

Closes #17114
This commit is contained in:
David Richardson
2015-08-20 10:33:45 +01:00
committed by Chris Rebert
parent d16144cf2f
commit 42792682ac
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -16,10 +16,10 @@ Bootstrap includes simple and easily customized typography for headings, body te
Bootstrap sets basic global display, typography, and link styles. Specifically, we:
- Set `background-color: #fff;` on the `<body>`
- Use the `@font-family-base`, `@font-size-base`, and `@line-height-base` attributes as our typographic base
- Set the global link color via `@link-color` and apply link underlines only on `:hover`
- Use the `$font-family-base`, `$font-size-base`, and `$line-height-base` attributes as our typographic base
- Set the global link color via `$link-color` and apply link underlines only on `:hover`
These styles can be found within `scaffolding.less`.
These styles can be found within `_reboot.scss`.
## Headings