From 25149e4f5fb59de5e56721c6cc17cb6a78e2781d Mon Sep 17 00:00:00 2001 From: Deco Vander Date: Fri, 4 Jul 2025 13:04:03 -0400 Subject: [PATCH] Fix back button styling by removing duplicate CSS rules - Remove conflicting .back-link CSS rule that used undefined variables - Consolidate all back-link styling into single comprehensive rule - Add all necessary properties with !important to override conflicts - Include display, margin, padding, border-radius for proper button appearance - Ensure white text color on blue background for proper contrast - Add font-weight and transition for better visual presentation --- public/privacy.html | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/public/privacy.html b/public/privacy.html index da5d3c2..1fb31ce 100644 --- a/public/privacy.html +++ b/public/privacy.html @@ -48,20 +48,6 @@ margin-bottom: 8px; } - .back-link { - display: inline-block; - margin-top: 30px; - padding: 10px 20px; - background-color: var(--button-bg); - color: white; - text-decoration: none; - border-radius: 4px; - transition: background-color 0.2s ease; - } - - .back-link:hover { - background-color: var(--button-hover); - } .effective-date { color: #666; @@ -101,10 +87,16 @@ } .back-link { + display: inline-block !important; + margin-top: 30px !important; + padding: 10px 20px !important; color: white !important; background-color: var(--primary-color, #2196F3) !important; border: none !important; + border-radius: 4px !important; text-decoration: none !important; + transition: background-color 0.2s ease !important; + font-weight: 500 !important; } .back-link:hover {