summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/src
diff options
context:
space:
mode:
authorGravatar Roy Eden <roy.ede@gmail.com> 2023-01-27 12:14:19 -0300
committerGravatar GitHub <noreply@github.com> 2023-01-27 23:14:19 +0800
commit254eb21c8384a920830d85d7a43cd6281df926c6 (patch)
treebcb5c22bd31b5a9babf2cc85e1cd819dc86ec0e1 /examples/with-tailwindcss/src
parent12c68343c0aa891037d39d3c9b9378b004be6642 (diff)
downloadastro-254eb21c8384a920830d85d7a43cd6281df926c6.tar.gz
astro-254eb21c8384a920830d85d7a43cd6281df926c6.tar.zst
astro-254eb21c8384a920830d85d7a43cd6281df926c6.zip
fix: autoprefixer on dev mode for tailwind plugin (#6002)
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to 'examples/with-tailwindcss/src')
-rw-r--r--examples/with-tailwindcss/src/components/Button.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-tailwindcss/src/components/Button.astro b/examples/with-tailwindcss/src/components/Button.astro
index 79060699b..167927fb3 100644
--- a/examples/with-tailwindcss/src/components/Button.astro
+++ b/examples/with-tailwindcss/src/components/Button.astro
@@ -4,7 +4,7 @@
---
<button
- class="py-2 px-4 bg-purple-500 text-white font-semibold rounded-lg shadow-md hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-400 focus:ring-opacity-75"
+ class="appearance-none py-2 px-4 bg-purple-500 text-white font-semibold rounded-lg shadow-md hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-400 focus:ring-opacity-75"
>
<slot />
</button>