style(button): add primary button styles to globals.css for improved UI consistency

This commit is contained in:
Usman Baig
2026-01-23 17:37:22 +01:00
parent 794523fa81
commit 27afe1e2a6

View File

@@ -56,5 +56,7 @@
@layer components {
/* * Reusable component styles */
/* * Button styles are now managed directly in the Button.tsx component to ensure consistency */
.btn-primary {
@apply bg-brand-orange text-white px-5 py-2.5 rounded-xl font-semibold shadow-sm shadow-orange-200 dark:shadow-none hover:shadow-orange-300 dark:hover:shadow-brand-orange/20 hover:-translate-y-0.5 transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-brand-orange focus:ring-offset-2 dark:focus:ring-offset-neutral-900;
}
}