Add search bar to theme overview

This commit is contained in:
Pieter Vander Vennet 2022-04-24 01:32:19 +02:00
parent 6252c4e888
commit 7c4c17d15c
6 changed files with 161 additions and 33 deletions

View file

@ -44,7 +44,7 @@ export class TextField extends InputElement<string> {
el.type = options.htmlType ?? "text"
el.inputMode = options.inputMode
el.placeholder = placeholder
el.style.cssText = options.inputStyle
el.style.cssText = options.inputStyle ?? "width: 100%;"
inputEl = el
}