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:
parent
6d9504086b
commit
6fc417a849
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue