Skip to content

Commit

Permalink
scss exects semicolon (#36779)
Browse files Browse the repository at this point in the history
copy/pasting the SCSS example into VSCode results in linter warning. Fixed with semicolon on variable assignment. Added the second semicolon for consistency.



## Documentation / Examples

- [ ] Make sure the linting passes by running `yarn lint`


Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
  • Loading branch information
RobertKeyser and ijjk committed May 12, 2022
1 parent b596ce9 commit 66d98e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/basic-features/built-in-css-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ For example, using the exported `primaryColor` Sass variable:

```scss
/* variables.module.scss */
$primary-color: #64FF00
$primary-color: #64ff00;

:export {
primaryColor: $primary-color
primaryColor: $primary-color;
}
```

Expand Down

0 comments on commit 66d98e2

Please sign in to comment.