From 534be1d4fccb1640bae317471e8ef6de9e33455d Mon Sep 17 00:00:00 2001 From: Thibault Reidy Date: Fri, 20 Sep 2024 15:19:19 +0200 Subject: [PATCH] feat: update the delete button bg color --- src/components/thumbnails/ThumbnailCrop.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/thumbnails/ThumbnailCrop.tsx b/src/components/thumbnails/ThumbnailCrop.tsx index 14ecde53f..0afa067d1 100644 --- a/src/components/thumbnails/ThumbnailCrop.tsx +++ b/src/components/thumbnails/ThumbnailCrop.tsx @@ -54,7 +54,7 @@ const HoveredBox = styled(Stack)(({ zIndex }: { zIndex: number }) => ({ })); const sxDeleteButton = () => { - const bgColor = (opacity: number) => `rgb(80, 80, 210, ${opacity})`; + const bgColor = (opacity: number) => `rgb(255, 255, 255, ${opacity})`; return { backgroundColor: bgColor(0.5), ':hover': {