From 3e2466dc72b19beae7c66bcd2eba751490ec66f4 Mon Sep 17 00:00:00 2001 From: Elijah Date: Sat, 19 May 2018 09:24:31 -0500 Subject: [PATCH] Possibly fixed banner issues --- .gitignore | 2 ++ main.js | 2 +- style.css | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1258669 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +.DS_Store diff --git a/main.js b/main.js index a847ef2..f5c65a5 100644 --- a/main.js +++ b/main.js @@ -165,7 +165,7 @@ document.getElementById("goButton").addEventListener("click", async () => { } payload = new Uint8Array(await readFileAsArrayBuffer(file)); } else { - logOutput("

You're trying to load a payload type that doesn't exist.

"); + logOutput("You're trying to load a payload type that doesn't exist."); return; } diff --git a/style.css b/style.css index e967cf7..331e84f 100644 --- a/style.css +++ b/style.css @@ -10,6 +10,7 @@ body { #title { text-align: center; + font-size: 1.5vw; padding-top: 10vw; padding-bottom: 10vw; background-size: cover;