fix to textarea extra line at the bottom on win
This commit is contained in:
parent
741ed9b98c
commit
1f3c65a504
1 changed files with 6 additions and 4 deletions
|
@ -111,9 +111,11 @@ editable-text {
|
|||
&[hidden]{
|
||||
display: none;
|
||||
}
|
||||
// somehow it fixes extra tall textareas on windows that was rendered to have at least
|
||||
// 3 rows even when there's no text
|
||||
// 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: hidden;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue