Remove extra textarea padding on all platforms

This commit is contained in:
Abe Jellinek 2024-01-22 14:08:13 -05:00 committed by Dan Stillman
parent d375b1c78b
commit f59ee25fd7

View file

@ -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;
}
}