diff options
| author | David Richardson <[email protected]> | 2015-08-20 10:33:45 +0100 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-08-20 13:03:12 -0700 |
| commit | 42792682acc780b8ea6bf56655293cf9919a9115 (patch) | |
| tree | 30ba84af6beec1a2c19a2c578abf7b29051e1b6b /docs/content | |
| parent | d16144cf2fb4d1b40cafcc80c8f7badf0cf68261 (diff) | |
| download | bootstrap-42792682acc780b8ea6bf56655293cf9919a9115.tar.xz bootstrap-42792682acc780b8ea6bf56655293cf9919a9115.zip | |
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
Diffstat (limited to 'docs/content')
| -rw-r--r-- | docs/content/typography.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/typography.md b/docs/content/typography.md index f84a44c4d..ada3bc2b6 100644 --- a/docs/content/typography.md +++ b/docs/content/typography.md @@ -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 |
