UI improvements and initial loading screen color

This commit is contained in:
2026-02-02 12:08:30 -06:00
parent b2c197454d
commit 3212402788
7 changed files with 338 additions and 238 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export const TaskCard: Component<{ task: Task }> = (props) => {
return (
<div
class={cn(
"group flex items-center p-3 sm:p-4 bg-card border border-border rounded-2xl transition-all duration-300 hover:shadow-xl hover:shadow-primary/5 hover:-translate-y-0.5 cursor-pointer w-full min-w-0 overflow-hidden",
"group flex items-center p-3 sm:p-4 bg-card border border-border rounded-2xl transition-all duration-500 hover:duration-100 hover:shadow-xl hover:shadow-primary/5 hover:-translate-y-0.5 cursor-pointer w-full min-w-0 overflow-hidden",
props.task.completed && "opacity-60"
)}
onClick={() => setActiveTaskId(props.task.id)}