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
This commit is contained in:
TheFlow 2025-10-29 15:20:41 +13:00
parent 6d9504086b
commit 6fc417a849

View file

@ -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;