Skip to content

Commit

Permalink
feat: update the delete button bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
ReidyT committed Sep 20, 2024
1 parent a84ac7d commit ba3e589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/thumbnails/ThumbnailCrop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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': {
Expand Down

0 comments on commit ba3e589

Please sign in to comment.