diff --git a/src/website/index.html b/src/website/index.html index 05ac104..f36f963 100644 --- a/src/website/index.html +++ b/src/website/index.html @@ -18,7 +18,6 @@ -

diff --git a/src/website/scripts/Utility.js b/src/website/scripts/Utility.js index 1f23cce..c2f8a9a 100644 --- a/src/website/scripts/Utility.js +++ b/src/website/scripts/Utility.js @@ -67,7 +67,6 @@ class Utility { } static log(text) { - //logParagraph.innerHTML = `${text}
${logParagraph.innerHTML}`; console.log(text); } } diff --git a/src/website/styles/main.css b/src/website/styles/main.css index fcc9069..cd039c4 100644 --- a/src/website/styles/main.css +++ b/src/website/styles/main.css @@ -1,5 +1,6 @@ :root { --spacing: 12px; + --input-height: 40px; } * { @@ -22,16 +23,12 @@ main { input { width: 100%; + padding: var(--spacing); } #message { position: relative; -} - -#log { - height: 300px; - font-size: 0.8rem; - overflow: scroll; + min-height: 23px; } .buttons { @@ -43,6 +40,7 @@ input { button { width: 100%; display: block; + padding: var(--spacing); } .hide {