mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Slight improvement for Firefox bug #368
This commit is contained in:
parent
06c0666b93
commit
2e1ae4c7d5
2 changed files with 3 additions and 1 deletions
|
|
@ -202,7 +202,7 @@ export class EmailAddressesComponent {
|
|||
_resizeInput() {
|
||||
let input = this.input;
|
||||
if (input.clientWidth < input.scrollWidth) {
|
||||
input.style.width = Math.min(500, Math.max(200, input.scrollWidth)) + 'px';
|
||||
input.style.width = (input.scrollWidth + 20) + 'px';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue