Fix small styling issue

This commit is contained in:
Pieter Vander Vennet 2021-08-20 00:15:55 +02:00
parent 16573946cb
commit 50d7d098a3
2 changed files with 2 additions and 0 deletions

View file

@ -41,6 +41,7 @@ export class TextField extends InputElement<string> {
el.placeholder = placeholder
el.rows = options.textAreaRows
el.cols = 50
el.style.width = "100%"
inputEl = el;
} else {
const el = document.createElement("input")