this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove hover from mobile view

+9 -1
+4
mast-react-vite/src/components/ui/project.tsx
··· 12 12 // Array of predefined colors 13 13 const PROJECT_COLORS = [ 14 14 { text: 'text-blue-600', bg: 'bg-blue-600', icon: 'text-blue-500' }, 15 + { text: 'text-sky-600', bg: 'bg-sky-600', icon: 'text-sky-500' }, 16 + { text: 'text-cyan-600', bg: 'bg-cyan-600', icon: 'text-cyan-500' }, 15 17 { text: 'text-red-600', bg: 'bg-red-600', icon: 'text-red-500' }, 16 18 { text: 'text-green-600', bg: 'bg-green-600', icon: 'text-green-500' }, 19 + { text: 'text-emerald-600', bg: 'bg-emerald-600', icon: 'text-emerald-500' }, 20 + { text: 'text-lime-600', bg: 'bg-lime-600', icon: 'text-lime-500' }, 17 21 { text: 'text-purple-600', bg: 'bg-purple-600', icon: 'text-purple-500' }, 18 22 { text: 'text-orange-600', bg: 'bg-orange-600', icon: 'text-orange-500' }, 19 23 { text: 'text-teal-600', bg: 'bg-teal-600', icon: 'text-teal-500' },
+4
mast-react-vite/src/components/ui/tag.tsx
··· 11 11 // Array of predefined colors 12 12 const TAG_COLORS = [ 13 13 { text: 'text-blue-600', border: 'border-blue-700', icon: 'text-blue-500' }, 14 + { text: 'text-sky-600', border: 'border-sky-700', icon: 'text-sky-500' }, 15 + { text: 'text-cyan-600', border: 'border-cyan-700', icon: 'text-cyan-500' }, 14 16 { text: 'text-red-600', border: 'border-red-700', icon: 'text-red-500' }, 15 17 { text: 'text-green-600', border: 'border-green-700', icon: 'text-green-500' }, 18 + { text: 'text-emerald-600', border: 'border-emerald-700', icon: 'text-emerald-500' }, 19 + { text: 'text-lime-600', border: 'border-lime-700', icon: 'text-lime-500' }, 16 20 { text: 'text-purple-600', border: 'border-purple-700', icon: 'text-purple-500' }, 17 21 { text: 'text-orange-600', border: 'border-orange-700', icon: 'text-orange-500' }, 18 22 { text: 'text-teal-600', border: 'border-teal-700', icon: 'text-teal-500' },
+1 -1
mast-react-vite/src/components/ui/task.tsx
··· 48 48 return ( 49 49 <> 50 50 <div 51 - className={`p-4 ${getStateStyles(data.completed)} hover:bg-muted/50 transition-colors`} 51 + className={`p-4 ${getStateStyles(data.completed)} md:hover:bg-muted/50 transition-colors`} 52 52 onClick={() => toggleSelection(data.working_id)} 53 53 > 54 54 <div className="flex items-start gap-4">