diff options
author | 2023-04-08 03:57:16 -0500 | |
---|---|---|
committer | 2023-04-08 16:57:16 +0800 | |
commit | 671a011d4f374c3f162b7fc6ba9aed5de7642fed (patch) | |
tree | a51389bb1c17261aae283e4202fb453433bb1206 | |
parent | d5312392013886b3b2b072b93f28b017c1959274 (diff) | |
download | astro-671a011d4f374c3f162b7fc6ba9aed5de7642fed.tar.gz astro-671a011d4f374c3f162b7fc6ba9aed5de7642fed.tar.zst astro-671a011d4f374c3f162b7fc6ba9aed5de7642fed.zip |
Fix Tailwind README code block (#6783)
Co-authored-by: BryceRussell <19967622+BryceRussell@users.noreply.github.com>
-rw-r--r-- | packages/integrations/tailwind/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/tailwind/README.md b/packages/integrations/tailwind/README.md index cb8bef00e..cfaef2495 100644 --- a/packages/integrations/tailwind/README.md +++ b/packages/integrations/tailwind/README.md @@ -147,7 +147,7 @@ You can now [import your own `base.css` as a local stylesheet](https://docs.astr When using the `@apply` directive in an Astro, Vue, Svelte, or another component integration's `<style>` tag, it may generate errors about your custom Tailwind class not existing and cause your build to fail. -``` +```sh error The `text-special` class does not exist. If `text-special` is a custom class, make sure it is defined within a `@layer` directive. ``` |