style: make plus button bigger

This commit is contained in:
Maze Winther
2025-09-01 23:20:01 +02:00
parent f7ef8d7f38
commit c5c32a1e34
@@ -218,7 +218,7 @@ function PlusButton({
<Button <Button
size="icon" size="icon"
className={cn( 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 className
)} )}
onClick={(e) => { onClick={(e) => {
@@ -228,7 +228,7 @@ function PlusButton({
}} }}
title={tooltipText} title={tooltipText}
> >
<Plus className="size-3!" /> <Plus className="size-4!" />
</Button> </Button>
); );