button color

This commit is contained in:
Maze Winther 2026-03-03 14:22:14 +01:00
parent 719e0d4398
commit 21f12ff763
1 changed files with 16 additions and 14 deletions

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,8 +645,9 @@ 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
checked={isSelected} checked={isSelected}
@ -656,7 +658,7 @@ function ProjectItem({
shiftKey: event.shiftKey, shiftKey: event.shiftKey,
}); });
}} }}
onCheckedChange={() => { }} onCheckedChange={() => {}}
className="size-5 shrink-0" className="size-5 shrink-0"
/> />
@ -664,17 +666,17 @@ function ProjectItem({
{listRowContent} {listRowContent}
</Link> </Link>
{!isMultiSelect && ( {!isMultiSelect && (
<ProjectMenu <ProjectMenu
isOpen={isDropdownOpen} isOpen={isDropdownOpen}
onOpenChange={setIsDropdownOpen} onOpenChange={setIsDropdownOpen}
variant="list" variant="list"
onRenameClick={handleRename} onRenameClick={handleRename}
onDuplicateClick={handleDuplicate} onDuplicateClick={handleDuplicate}
onDeleteClick={handleDeleteClick} onDeleteClick={handleDeleteClick}
onInfoClick={handleInfoClick} onInfoClick={handleInfoClick}
/> />
)} )}
</div> </div>
); );