From 59f854c07540d65110e4984f09bf2f688862e961 Mon Sep 17 00:00:00 2001
From: youngcw <calebyoung94@gmail.com>
Date: Sat, 20 Apr 2024 14:32:43 -0700
Subject: [PATCH] fix superfluous tooltip scrollbars fixes #2621 (#2650)

* fix tooltips with scrollbars

* note
---
 packages/desktop-client/src/style/styles.ts | 2 +-
 upcoming-release-notes/2650.md              | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)
 create mode 100644 upcoming-release-notes/2650.md

diff --git a/packages/desktop-client/src/style/styles.ts b/packages/desktop-client/src/style/styles.ts
index 573d98065..e7c8e1794 100644
--- a/packages/desktop-client/src/style/styles.ts
+++ b/packages/desktop-client/src/style/styles.ts
@@ -136,7 +136,7 @@ export const styles = {
     borderRadius: 4,
     backgroundColor: theme.menuBackground,
     color: theme.menuItemText,
-    overflow: 'scroll',
+    overflow: 'auto',
   },
   // Dynamically set
   lightScrollbar: null as CSSProperties | null,
diff --git a/upcoming-release-notes/2650.md b/upcoming-release-notes/2650.md
new file mode 100644
index 000000000..4c128fe65
--- /dev/null
+++ b/upcoming-release-notes/2650.md
@@ -0,0 +1,6 @@
+---
+category: Bugfix
+authors: [youngcw]
+---
+
+Fix scroll bars always showing on tooltips
-- 
GitLab