Skip to content

Commit 3b6600a

Browse files
authored
Merge pull request #89 from ddri/colourfix
Fix collections buttons
2 parents e04d447 + 3336489 commit 3b6600a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/Collections.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ export default function Collections() {
452452
setNewCollectionDesc('');
453453
setSelectedTopicIds([]);
454454
}}
455-
className="bg-yellow-400 hover:bg-yellow-500 text-black font-semibold"
455+
className="bg-[#E669E8] hover:bg-[#d15dd3] text-white font-semibold"
456456
>
457457
<Plus className="w-4 h-4 mr-2" />
458458
New Collection
@@ -461,7 +461,7 @@ export default function Collections() {
461461

462462
{/* Collection Form */}
463463
{(showNewCollectionForm || editingCollection) && (
464-
<Card className={`mb-8 border-2 ${editingCollection ? 'border-blue-400' : 'border-yellow-400'}`}>
464+
<Card className={`mb-8 border-2 ${editingCollection ? 'border-blue-400' : 'border-[#E669E8]'}`}>
465465
<CardHeader>
466466
<CardTitle>{editingCollection ? 'Edit Collection' : 'Create New Collection'}</CardTitle>
467467
</CardHeader>
@@ -543,7 +543,7 @@ export default function Collections() {
543543
<Button
544544
onClick={editingCollection ? saveEditedCollection : saveNewCollection}
545545
disabled={!newCollectionName || selectedTopicIds.length === 0}
546-
className={`${editingCollection ? 'bg-blue-400 hover:bg-blue-500' : 'bg-yellow-400 hover:bg-yellow-500'} text-black`}
546+
className={`${editingCollection ? 'bg-blue-400 hover:bg-blue-500' : 'bg-[#E669E8] hover:bg-[#d15dd3]'} text-white`}
547547
>
548548
{editingCollection ? 'Save Changes' : 'Create Collection'}
549549
</Button>

0 commit comments

Comments
 (0)