diff --git a/src/components/MoodTracker.tsx b/src/components/MoodTracker.tsx index 5f25803..fb32eba 100644 --- a/src/components/MoodTracker.tsx +++ b/src/components/MoodTracker.tsx @@ -198,9 +198,9 @@ export function MoodTracker() { - + {/* Mood Selection */} -
+
{[ { id: 'good', icon: Smile, label: 'Good', color: 'emerald' }, { id: 'neutral', icon: Meh, label: 'Okay', color: 'amber' }, @@ -215,7 +215,7 @@ export function MoodTracker() { onClick={() => handleMoodSelect(item.id as any)} disabled={isSaving} className={cn( - "group relative flex flex-col items-center justify-center gap-3 p-4 rounded-2xl transition-all duration-300", + "group relative flex flex-col items-center justify-center gap-2 p-3 rounded-2xl transition-all duration-300", "border", isSelected ? (theme === 'light' @@ -227,17 +227,17 @@ export function MoodTracker() { )} >
- +
- +

{affirmation} @@ -276,9 +276,9 @@ export function MoodTracker() {

{/* Mini Graph */} -
+
@@ -286,7 +286,7 @@ export function MoodTracker() {