summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/src/components/Button.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-tailwindcss/src/components/Button.astro')
-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>