diff --git a/commafeed-client/src/components/ActionButtton.tsx b/commafeed-client/src/components/ActionButtton.tsx index 8ecfb4d5..ea6431b1 100644 --- a/commafeed-client/src/components/ActionButtton.tsx +++ b/commafeed-client/src/components/ActionButtton.tsx @@ -1,4 +1,4 @@ -import { ActionIcon, Button, useMantineTheme } from "@mantine/core" +import { ActionIcon, Button, Tooltip, useMantineTheme } from "@mantine/core" import { ActionIconProps } from "@mantine/core/lib/ActionIcon/ActionIcon" import { ButtonProps } from "@mantine/core/lib/Button/Button" import { useMediaQuery } from "@mantine/hooks" @@ -22,9 +22,11 @@ export const ActionButton = forwardRef((pr const mobile = !useMediaQuery(`(min-width: ${theme.breakpoints.lg})`) const iconOnly = !props.showLabelOnMobile && (mobile || !props.label) return iconOnly ? ( - - {props.icon} - + + + {props.icon} + + ) : (