Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): Correct capitalization for Sass #25311

Merged
merged 1 commit into from
Jun 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions packages/gatsby-plugin-sass/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gatsby-plugin-sass

Provides drop-in support for SASS/SCSS stylesheets
Provides drop-in support for Sass/SCSS stylesheets

## Install

Expand Down Expand Up @@ -80,9 +80,9 @@ plugins: [
]
```

### SASS Precision
### Sass Precision

SASS defaults to [10 digits of precision](https://github.com/sass/sass/pull/2297). If you want some other level of precision (e.g. if you use Bootstrap), you may configure it as follows:
Sass defaults to [10 digits of precision](https://github.com/sass/sass/pull/2297). If you want some other level of precision (e.g. if you use Bootstrap), you may configure it as follows:

#### Bootstrap 4

Expand Down Expand Up @@ -123,7 +123,7 @@ Any file with the `module` extension will use CSS Modules.

## SASS & CSS Modules file Regexes

To override the file regex for SASS or CSS modules,
To override the file regex for Sass or CSS modules,

```javascript:title=gatsby-config.js
plugins: [
Expand Down Expand Up @@ -188,7 +188,7 @@ plugins: [
]
```

NOTE that adding resolve-url-loader will use `sourceMap: true` on sass-loader (as it is required for the plugin to work), you can then activate/deactivate source-map for sass files in the plugin:
NOTE that adding resolve-url-loader will use `sourceMap: true` on sass-loader (as it is required for the plugin to work), you can then activate/deactivate source-map for Sass files in the plugin:

```javascript:title=gatsby-config.js
plugins: [
Expand Down