fix form layout

This commit is contained in:
Harvey Tindall
2021-12-31 18:52:03 +00:00
parent 8bee09cd01
commit 7e0e0b0520
8 changed files with 41 additions and 44 deletions
+2 -2
View File
@@ -38,9 +38,9 @@ export class Updater implements updater {
const el = document.getElementById("update-description") as HTMLParagraphElement;
el.textContent = description;
if (this.version == "git") {
el.classList.add("monospace");
el.classList.add("font-mono", "bg-inherit");
} else {
el.classList.remove("monospace");
el.classList.remove("font-mono", "bg-inherit");
}
}