From 4aa1e6e7dab6945359244ab78467fd62d8fbd541 Mon Sep 17 00:00:00 2001 From: Deco Vander Date: Fri, 4 Jul 2025 13:02:56 -0400 Subject: [PATCH] Fix back button text color for proper contrast - Change back-link text color from blue to white for readability - Remove text-decoration underline for cleaner button appearance - Ensure white text shows clearly on blue button background - Maintain white text color on hover for consistency - Improve accessibility with proper color contrast ratio --- public/privacy.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/privacy.html b/public/privacy.html index 03b714e..da5d3c2 100644 --- a/public/privacy.html +++ b/public/privacy.html @@ -101,14 +101,16 @@ } .back-link { - color: var(--link-color) !important; + color: white !important; background-color: var(--primary-color, #2196F3) !important; border: none !important; + text-decoration: none !important; } .back-link:hover { background-color: var(--primary-hover, #1976D2) !important; color: white !important; + text-decoration: none !important; }