From b65ae906b25488c56b5c232642d848d95fb57de0 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Fri, 26 Apr 2024 15:16:22 +0200 Subject: [PATCH] fix tooltips --- src/composables/useFloating.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/composables/useFloating.js b/src/composables/useFloating.js index 01dbfb6..c63ed1a 100644 --- a/src/composables/useFloating.js +++ b/src/composables/useFloating.js @@ -1,6 +1,9 @@ import {vTooltip, options} from 'floating-vue'; options.themes.tooltip.delay.show = 0; +options.themes.tooltip.distance = 15; +options.themes.tooltip.delay.hide = 2000; +options.themes.tooltip.autoHideOnMousedown = true; options.themes.tooltip.html = true; options.themes.tooltip.handleResize = true;