button color

This commit is contained in:
Maze Winther
2026-03-03 14:22:14 +01:00
parent 719e0d4398
commit 21f12ff763
+4 -2
View File
@@ -514,6 +514,7 @@ function NewProjectButton() {
return ( return (
<Button <Button
variant="foreground"
size="lg" size="lg"
className="flex px-5 md:px-6" className="flex px-5 md:px-6"
onClick={handleCreateProject} onClick={handleCreateProject}
@@ -644,7 +645,8 @@ function ProjectItem({
const listContent = ( const listContent = (
<div <div
className={`flex items-center gap-4 py-2 px-4 border-b border-border/50 ${isSelected ? "bg-primary/5" : "" className={`flex items-center gap-4 py-2 px-4 border-b border-border/50 ${
isSelected ? "bg-primary/5" : ""
}`} }`}
> >
<Checkbox <Checkbox
@@ -656,7 +658,7 @@ function ProjectItem({
shiftKey: event.shiftKey, shiftKey: event.shiftKey,
}); });
}} }}
onCheckedChange={() => { }} onCheckedChange={() => {}}
className="size-5 shrink-0" className="size-5 shrink-0"
/> />