diff --git a/app/src/mobile/util/showKeyboardToolbar.ts b/app/src/mobile/util/showKeyboardToolbar.ts new file mode 100644 index 000000000..d4843e29d --- /dev/null +++ b/app/src/mobile/util/showKeyboardToolbar.ts @@ -0,0 +1,5 @@ +export const showKeyboardToolbar = (bottom = 0) => { + const toolbarElement = document.getElementById("keyboardToolbar"); + toolbarElement.classList.remove("fn__none"); + toolbarElement.style.bottom = bottom + "px"; +}