From 2d9814628d073a91d3d0e23c16f88b0c38091b69 Mon Sep 17 00:00:00 2001 From: Miner49ur <101815367+Miner49ur@users.noreply.github.com> Date: Mon, 9 Sep 2024 23:43:56 -0400 Subject: [PATCH] replaced footer --- payloads/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/payloads/index.js b/payloads/index.js index 6c88bef..e6f1ad9 100644 --- a/payloads/index.js +++ b/payloads/index.js @@ -582,9 +582,9 @@ const htmlStyle = ` font-family: Consolas; } .footer { - display: inline; - float: right; - margin: 10px 5px; + display: fixed; + bottom: 5px; + right: 10px; color: #83898e; } @@ -627,7 +627,7 @@ onload = async function x() { const permissions = otherFeatures.permissions; new DefaultExtensionCapabilities().activate(); - document.body.insertAdjacentHTML("beforeend", ``); + document.body.insertAdjacentHTML("beforeend", ``); document.querySelector("#code-run").addEventListener("click", () => runCode(false)); }; @@ -681,4 +681,4 @@ const runCode = async (onTab, tabId = "") => { } catch (error) { outputDiv.innerHTML = `Error: ${error}`; } -} \ No newline at end of file +}