summaryrefslogtreecommitdiff
path: root/docs/src/pages/guides/styling.md
diff options
context:
space:
mode:
authorGravatar GitHub Action <github-action@users.noreply.github.com> 2021-12-03 14:40:46 +0000
committerGravatar GitHub Action <github-action@users.noreply.github.com> 2021-12-03 14:40:46 +0000
commit213a2622e2d126328e5752716f659937896cc88a (patch)
tree179e7bc80d83316875b9c57646a61f613fd54646 /docs/src/pages/guides/styling.md
parenta7a5546429ca2b12c17a87026c9d9418d42c8815 (diff)
downloadastro-213a2622e2d126328e5752716f659937896cc88a.tar.gz
astro-213a2622e2d126328e5752716f659937896cc88a.tar.zst
astro-213a2622e2d126328e5752716f659937896cc88a.zip
chore(lint): Prettier fix
Diffstat (limited to 'docs/src/pages/guides/styling.md')
-rw-r--r--docs/src/pages/guides/styling.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md
index db486e3ee..f3c88a5af 100644
--- a/docs/src/pages/guides/styling.md
+++ b/docs/src/pages/guides/styling.md
@@ -129,9 +129,7 @@ It’s recommended to only use this in scenarios where a `<link>` tag won’t wo
```js
// postcss.config.cjs
module.exports = {
- plugins: [
- require("autoprefixer")
- ],
+ plugins: [require('autoprefixer')],
};
```
@@ -222,9 +220,7 @@ module.exports = {
```js
// postcss.config.cjs
module.exports = {
- plugins: [
- require("tailwindcss")
- ],
+ plugins: [require('tailwindcss')],
};
```