Fix a typo on css

This commit is contained in:
Cotes Chung 2021-01-23 13:21:40 +08:00
parent b7266aceac
commit 0e9104a58f
2 changed files with 4 additions and 4 deletions

View File

@ -976,7 +976,7 @@ img {
display: none !important;
}
.visable {
.visible {
visibility: visible !important;
}

View File

@ -78,7 +78,7 @@ $(function() {
hints.removeClass("unloaded");
}
resultWrapper.addClass("unloaded");
btnClear.removeClass("visable");
btnClear.removeClass("visible");
main.removeClass("hidden");
input.val("");
@ -130,7 +130,7 @@ $(function() {
resultSwitch.on();
if (!btnClear.hasClass("visible")) {
btnClear.addClass("visable");
btnClear.addClass("visible");
}
if (isMobileView()) {
@ -149,7 +149,7 @@ $(function() {
resultSwitch.off();
}
input.focus();
btnClear.removeClass("visable");
btnClear.removeClass("visible");
});
});