From e8efef235c39056de0f21ca8daef6bd7f14220c8 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Mon, 29 Jun 2026 00:22:59 +0100 Subject: [PATCH] fix: tooltip on focus --- apps/client/src/theme.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/client/src/theme.ts b/apps/client/src/theme.ts index 5123c87e7..61ec8fbd4 100644 --- a/apps/client/src/theme.ts +++ b/apps/client/src/theme.ts @@ -4,6 +4,7 @@ import { CSSVariablesResolver, MantineColorsTuple, Tabs, + Tooltip, v8CssVariablesResolver, } from "@mantine/core"; @@ -40,6 +41,11 @@ export const theme = createTheme({ }, defaultRadius: 'sm', components: { + Tooltip: Tooltip.extend({ + defaultProps: { + events: { hover: true, focus: true, touch: false }, + }, + }), // Size badges to their content; fit-content collapses inside table cells. Badge: Badge.extend({ styles: (_theme, props) => ({