From c18843552490769fd37202a153a3484671c79c28 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 15 May 2025 07:00:25 -0700 Subject: [PATCH] Fix obscured text overflow https://feedback.yaak.app/p/pasting-token-auth-results-in-invisible-text --- src-web/components/core/Editor/Editor.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src-web/components/core/Editor/Editor.css b/src-web/components/core/Editor/Editor.css index 35d96d15..5a6003f2 100644 --- a/src-web/components/core/Editor/Editor.css +++ b/src-web/components/core/Editor/Editor.css @@ -102,11 +102,13 @@ } .cm-scroller { - @apply font-mono text-xs overflow-hidden; - } + @apply font-mono text-xs; - .cm-line { - @apply overflow-hidden; + /* Hide scrollbars */ + &::-webkit-scrollbar-corner, + &::-webkit-scrollbar { + @apply hidden !important; + } } }