Vanessa 2022-10-06 17:14:04 +08:00
parent aaeee519e8
commit df14b34f08

View file

@ -0,0 +1,5 @@
export const showKeyboardToolbar = (bottom = 0) => {
const toolbarElement = document.getElementById("keyboardToolbar");
toolbarElement.classList.remove("fn__none");
toolbarElement.style.bottom = bottom + "px";
}