web: remove almost every use of ml/mr

replace with flex and gap mostly. For #450.
This commit is contained in:
Harvey Tindall
2025-12-08 15:12:40 +00:00
parent 9c9e55147d
commit 362984a391
25 changed files with 339 additions and 268 deletions
+7 -1
View File
@@ -34,5 +34,11 @@ copyButton.onclick = () => {
toClipboard("```\n" + logSanitized.textContent + "```");
}
copyButton.textContent = "Copied.";
setTimeout(() => { copyButton.textContent = "Copy"; }, 1500);
copyButton.classList.add("~positive");
copyButton.classList.remove("~urge");
setTimeout(() => {
copyButton.textContent = "Copy";
copyButton.classList.add("~urge");
copyButton.classList.remove("~positive");
}, 1500);
};