From 79b64eee278f6d5906bc22223b2907f2841e1241 Mon Sep 17 00:00:00 2001 From: Florin Date: Mon, 8 May 2023 15:43:57 -0700 Subject: [PATCH] docs(guides/styling): add note about Tailwind warning (#6338) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mark Dalgleish Co-authored-by: Mehdi Achour Co-authored-by: Michaƫl De Boey --- contributors.yml | 1 + docs/guides/styling.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contributors.yml b/contributors.yml index a16c113a5c8..933be6accbf 100644 --- a/contributors.yml +++ b/contributors.yml @@ -96,6 +96,7 @@ - coryhouse - craigglennie - crismali +- CSFlorin - cysp - d4vsanchez - dabdine diff --git a/docs/guides/styling.md b/docs/guides/styling.md index 3030b45b024..8a021efad76 100644 --- a/docs/guides/styling.md +++ b/docs/guides/styling.md @@ -462,9 +462,9 @@ export const links: LinksFunction = () => [ ]; ``` -With this setup in place, you can also use [Tailwind's functions and directives][tailwind-functions-and-directives] anywhere in your CSS. +With this setup in place, you can also use [Tailwind's functions and directives][tailwind-functions-and-directives] anywhere in your CSS. Note that Tailwind will warn that no utility classes were detected in your source files if you never used it before. -Note that if you're also using Remix's [built-in PostCSS support][built-in-post-css-support], the Tailwind PostCSS plugin will be automatically included if it's missing, but you can also choose to manually include the Tailwind plugin in your PostCSS config instead if you'd prefer. +If you're also using Remix's [built-in PostCSS support][built-in-post-css-support], the Tailwind PostCSS plugin will be automatically included if it's missing, but you can also choose to manually include the Tailwind plugin in your PostCSS config instead if you prefer. If you're using VS Code, it's recommended you install the [Tailwind IntelliSense extension][tailwind-intelli-sense-extension] for the best developer experience.