diff options
author | 2021-08-31 15:55:47 +0000 | |
---|---|---|
committer | 2021-08-31 15:55:47 +0000 | |
commit | 6c3416ef44c76afc75a89d735f8f39347be0e5a8 (patch) | |
tree | 2f08122843d2f38acddf3615d81860ef96f7b15b /docs/src | |
parent | 5b24bd176818e285b2eea986c43b89ff8b6330fd (diff) | |
download | astro-6c3416ef44c76afc75a89d735f8f39347be0e5a8.tar.gz astro-6c3416ef44c76afc75a89d735f8f39347be0e5a8.tar.zst astro-6c3416ef44c76afc75a89d735f8f39347be0e5a8.zip |
[ci] yarn format
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/guides/styling.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md index 1e5ff9bf0..7366cc107 100644 --- a/docs/src/pages/guides/styling.md +++ b/docs/src/pages/guides/styling.md @@ -161,12 +161,12 @@ As an alternative to `src/styles/global.css`, You may also add Tailwind utilitie #### Migrating from v0.19 -As of [version 0.20.0](https://github.com/snowpackjs/astro/releases/tag/astro%400.20.0), Astro will no longer bundle, build and process `public/` files. Previously, we'd recommended putting your tailwind files in the `public/` directory. If you started a project with this pattern, you should move any Tailwind styles into the `src` directory and import them in your template using [Astro.resolve()](/reference/api-reference#astroresolve): +As of [version 0.20.0](https://github.com/snowpackjs/astro/releases/tag/astro%400.20.0), Astro will no longer bundle, build and process `public/` files. Previously, we'd recommended putting your tailwind files in the `public/` directory. If you started a project with this pattern, you should move any Tailwind styles into the `src` directory and import them in your template using [Astro.resolve()](/reference/api-reference#astroresolve): ```astro - <link - rel="stylesheet" - href={Astro.resolve("../assets/global.css")} + <link + rel="stylesheet" + href={Astro.resolve("../assets/global.css")} > ``` |