From 789752a27a3f239eb4e14f1236a317e48fa0c477 Mon Sep 17 00:00:00 2001 From: AdityaMalik7 Date: Thu, 26 Jun 2025 14:10:15 +0530 Subject: [PATCH 1/2] Fix: add spacing between organization tooltip and sidebar --- app/renderer/css/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/renderer/css/main.css b/app/renderer/css/main.css index a796921f8..09dd9df39 100644 --- a/app/renderer/css/main.css +++ b/app/renderer/css/main.css @@ -404,7 +404,7 @@ webview.focus { .server-tooltip { font-family: arial, sans-serif; background: rgb(34 44 49 / 100%); - left: 56px; + margin-left: 48px; padding: 10px 20px; position: fixed; margin-top: 11px; @@ -424,7 +424,7 @@ webview.focus { border-right: 8px solid rgb(34 44 49 / 100%); position: absolute; top: 10px; - left: -5px; + left: -6px; } #collapse-button { From 528743bc2ddccb7c3c83ee4cbc96438a599986b0 Mon Sep 17 00:00:00 2001 From: AdityaMalik7 Date: Thu, 26 Jun 2025 14:44:34 +0530 Subject: [PATCH 2/2] Fix tooltip spacing for Add Organization button --- app/renderer/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/renderer/css/main.css b/app/renderer/css/main.css index 09dd9df39..47f465196 100644 --- a/app/renderer/css/main.css +++ b/app/renderer/css/main.css @@ -404,7 +404,7 @@ webview.focus { .server-tooltip { font-family: arial, sans-serif; background: rgb(34 44 49 / 100%); - margin-left: 48px; + left: calc(54px + 6px); /* Sidebar width + spacing */ padding: 10px 20px; position: fixed; margin-top: 11px;