From c62dde327d556fc9df2c776f373f06d8c5af34b5 Mon Sep 17 00:00:00 2001 From: ale Date: Tue, 16 Sep 2025 02:07:28 +0200 Subject: [PATCH] fix css Signed-off-by: ale --- client/src/styles/globals.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/src/styles/globals.css b/client/src/styles/globals.css index eab7d06..d75688b 100644 --- a/client/src/styles/globals.css +++ b/client/src/styles/globals.css @@ -191,7 +191,10 @@ input[type="number"] { } button:not(.call-button):not(.btn-primary):not(.btn-secondary):not(.btn-danger) { - @apply btn-primary; + @apply bg-gradient-to-r from-indigo-600 to-purple-600 text-white font-semibold py-3 px-6 rounded-xl; + @apply hover:shadow-xl disabled:opacity-50 disabled:cursor-not-allowed transition-all duration-200; + @apply flex items-center justify-center space-x-2; + font-family: 'Inter', sans-serif; } .callButtons {