From a671c3c9a417103b76e734f9160775e045d90f4f Mon Sep 17 00:00:00 2001 From: Divyanshi Singh Date: Thu, 25 Sep 2025 16:33:54 +0530 Subject: [PATCH] fix(ui):unify button colors and resize box on scale Recipe page --- assets/css/scale.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/assets/css/scale.css b/assets/css/scale.css index ca76872..ac2f879 100644 --- a/assets/css/scale.css +++ b/assets/css/scale.css @@ -1261,11 +1261,11 @@ /* Primary Button */ .btn-primary { width: 50%; - background: #FF4C4C; + background: linear-gradient(90deg, #3e2723, #6e463e, #3e2723); color: #fff; border: none; - padding: 16px 32px; - border-radius: 12px; + padding: 1rem 2rem; + border-radius: 25px; font-weight: bold; font-size: 1.1rem; box-shadow: 0 2px 8px rgba(255, 70, 70, 0.10); @@ -1275,18 +1275,18 @@ } .btn-primary:hover { - background: #d73838; + background: linear-gradient(90deg, #3e2723, #6e463e, #3e2723); box-shadow: 0 4px 16px rgba(255, 76, 76, 0.22); transform: translateY(-2px) scale(1.04); } /* Secondary Button */ .btn-secondary { - background: #FF4C4C; + background: linear-gradient(90deg, #3e2723, #6e463e, #3e2723); color: #fff; border: none; - padding: 16px 32px; - border-radius: 12px; + padding: 1rem 2rem; + border-radius: 25px; font-weight: bold; font-size: 1.1rem; box-shadow: 0 2px 8px rgba(255, 70, 70, 0.10); @@ -1295,7 +1295,7 @@ } .btn-secondary:hover { - background: #d73838; + background: linear-gradient(90deg, #3e2723, #6e463e, #3e2723); box-shadow: 0 4px 16px rgba(255, 76, 76, 0.22); transform: translateY(-2px) scale(1.04); }