diff --git a/src/components/toolbar/toolbarButton.tsx b/src/components/toolbar/toolbarButton.tsx index 9c10f44..53ed172 100644 --- a/src/components/toolbar/toolbarButton.tsx +++ b/src/components/toolbar/toolbarButton.tsx @@ -36,7 +36,7 @@ const ToolbarButton = (props: React.PropsWithChildren) => { width: buttonSize, height: buttonSize, backgroundColor: theme.buttonBackgroundColor, - filter: isHover ? "brightness(80%)" : null, + filter: !disabled && isHover ? "brightness(80%)" : null, borderRadius: buttonSize / 5, display: "flex", alignItems: "center", @@ -49,8 +49,8 @@ const ToolbarButton = (props: React.PropsWithChildren) => {