From ed70da3ed6af1d87d56907321c7f558cbee205b9 Mon Sep 17 00:00:00 2001 From: Wu Zhou Date: Mon, 23 May 2022 15:07:29 +0800 Subject: [PATCH] config-tools: change the tooltip width to 60% Tooltip width was set to 50%. This could not just cut the line into 2 lines, for the line has to be cut by word. This would leave one word on a new line, looks weird. Set to 60% will solve this issue. Tracked-On: #7541 Signed-off-by: Wu Zhou --- .../packages/configurator/src/pages/Config/ConfigForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm.vue index 4d1023c9d..5be1f6210 100644 --- a/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm.vue +++ b/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm.vue @@ -200,6 +200,6 @@ export default { } .n-popover { - max-width: 50%; + max-width: 60%; } \ No newline at end of file