Skip to content

Commit

Permalink
docs: fix typo in css-in-js page (#31244)
Browse files Browse the repository at this point in the history
## Purpose

fix minor typo in [css-in-js page](https://nextjs.org/docs/basic-features/built-in-css-support#sass-variables) 

## Documentation / Examples

- [x] Make sure the linting passes by running `yarn lint`
  • Loading branch information
thundermiracle committed Nov 10, 2021
1 parent 9c4c712 commit 4299cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basic-features/built-in-css-support.md
Expand Up @@ -198,7 +198,7 @@ $primary-color: #64FF00

```js
// pages/_app.js
import variables from '../styles/variables.module.css'
import variables from '../styles/variables.module.scss'

export default function MyApp({ Component, pageProps }) {
return (
Expand Down

0 comments on commit 4299cc1

Please sign in to comment.