style: make plus button bigger

This commit is contained in:
Maze Winther 2025-09-01 23:20:01 +02:00
parent f7ef8d7f38
commit c5c32a1e34
1 changed files with 2 additions and 2 deletions

View File

@ -218,7 +218,7 @@ function PlusButton({
<Button
size="icon"
className={cn(
"absolute bottom-2 right-2 size-4 bg-background hover:bg-panel text-foreground",
"absolute bottom-2 right-2 size-5 bg-background hover:bg-panel text-foreground",
className
)}
onClick={(e) => {
@ -228,7 +228,7 @@ function PlusButton({
}}
title={tooltipText}
>
<Plus className="size-3!" />
<Plus className="size-4!" />
</Button>
);