summaryrefslogtreecommitdiff
path: root/examples/tailwindcss/src/components/Button.astro
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-05-21 14:02:19 -0600
committerGravatar GitHub <noreply@github.com> 2021-05-21 14:02:19 -0600
commit19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd (patch)
treec483e969746be30aa980a6fc8e583d59c85cb9b4 /examples/tailwindcss/src/components/Button.astro
parent69d693b77ce8d702a193bfcff8e5338889546ae4 (diff)
downloadastro-19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd.tar.gz
astro-19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd.tar.zst
astro-19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd.zip
Add Tailwind support to Astro Dev Server (#222)
* Improve PostCSS and Tailwind support * Update styling docs * Changelog * Fix test hanging
Diffstat (limited to 'examples/tailwindcss/src/components/Button.astro')
-rw-r--r--examples/tailwindcss/src/components/Button.astro5
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/tailwindcss/src/components/Button.astro b/examples/tailwindcss/src/components/Button.astro
index ac13d7a49..64baa50ae 100644
--- a/examples/tailwindcss/src/components/Button.astro
+++ b/examples/tailwindcss/src/components/Button.astro
@@ -1,8 +1,3 @@
-<style>
- @tailwind components;
- @tailwind utilities;
-</style>
-
<button class="py-2 px-4 bg-green-500 text-white font-semibold rounded-lg shadow-md hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-green-400 focus:ring-opacity-75">
<slot />
</button>