From f59ee25fd7084d4177570ed1df21ecf8df6c8edd Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Mon, 22 Jan 2024 14:08:13 -0500 Subject: [PATCH] Remove extra textarea padding on all platforms --- scss/elements/_editableText.scss | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scss/elements/_editableText.scss b/scss/elements/_editableText.scss index 4678f6dd55..e10984985a 100644 --- a/scss/elements/_editableText.scss +++ b/scss/elements/_editableText.scss @@ -116,10 +116,8 @@ editable-text { display: none; } // Per https://stackoverflow.com/a/22700700, somehow this removes an extra half-line - // at the bottom of textarea on windows - @media (-moz-platform: windows) { - textarea { - overflow-x: hidden; - } + // at the bottom of textarea on all platforms with non-overlay scrollbars + textarea { + overflow-x: hidden; } }