diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-05 22:16:56 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-05 22:16:56 +0530 |
| commit | 5d38404d54732193b822d80485371d5b74ae4e4b (patch) | |
| tree | 18719394c15c90e58e76deecdc519239266978c9 /tailwindcss/02-vite/src/style.css | |
| parent | 5287a9a10507c998540ac51442ff451a280dc05c (diff) | |
Theme colors changed, font size change links added
Diffstat (limited to 'tailwindcss/02-vite/src/style.css')
| -rw-r--r-- | tailwindcss/02-vite/src/style.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tailwindcss/02-vite/src/style.css b/tailwindcss/02-vite/src/style.css index d848adb..5842c85 100644 --- a/tailwindcss/02-vite/src/style.css +++ b/tailwindcss/02-vite/src/style.css @@ -5,14 +5,14 @@ /* Base layer customization with Tailwind CSS classes - applies to elements like p, a, img */ @layer base { - a { - @apply text-pink-500; + h2 { + @apply dark:text-pink-500; } } /* Components layer - Specify rules for components like btn, card, badge, etc. */ @layer components { .btn { - @apply inline-block rounded p-2 bg-gray-300 hover:bg-gray-900 hover:text-white transition; + @apply inline-block rounded p-2 bg-gray-300 hover:bg-gray-900 dark:bg-neutral-800 dark:hover:bg-neutral-700 hover:text-white transition; } }
\ No newline at end of file |
