File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments