From 6fc417a849e65c89c545c7b7fede32058cdde8cc Mon Sep 17 00:00:00 2001 From: TheFlow Date: Wed, 29 Oct 2025 15:20:41 +1300 Subject: [PATCH] fix: make share buttons visible with blue theme - Changed from gray-700 to blue-600 (matches site theme) - Added shadow-sm for better definition - Buttons now clearly visible on white card background --- public/js/share-cta.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/share-cta.js b/public/js/share-cta.js index 8fc4fd59..af35bcde 100644 --- a/public/js/share-cta.js +++ b/public/js/share-cta.js @@ -29,7 +29,7 @@ const originalClasses = button.className; button.textContent = 'Link Copied'; - button.className = 'bg-green-600 hover:bg-green-700 text-white px-6 py-2.5 rounded-lg font-medium transition-colors'; + button.className = 'bg-green-600 hover:bg-green-700 text-white px-6 py-2.5 rounded-lg font-medium transition-colors shadow-sm'; setTimeout(() => { button.textContent = originalText;