From 971a7225d784a624b4ceb56b9e367d6f33625482 Mon Sep 17 00:00:00 2001 From: Morgana Date: Wed, 16 Sep 2026 11:14:33 -0500 Subject: Deployment fixes --- static/script/main.js | 2 +- static/style/style.css | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'static') diff --git a/static/script/main.js b/static/script/main.js index 171645b..c023851 100644 --- a/static/script/main.js +++ b/static/script/main.js @@ -88,7 +88,7 @@ class IVTClient { this.stdin.value = ""; return false; }); - this.socket = new WebSocket("ws://localhost:5417"); + this.socket = new WebSocket("wss://icolotl.com/index"); this.socket.addEventListener("open", (event) => { this.printText("Attempting to connect to INDEX server..."); this.stdinPrompt.innerText = "CONNECTING>"; diff --git a/static/style/style.css b/static/style/style.css index e6a7e23..63929df 100644 --- a/static/style/style.css +++ b/static/style/style.css @@ -23,7 +23,8 @@ body { flex-direction: column; height: 100%; margin: 0; - padding: 0; + padding: 0.5em; + box-sizing: border-box; } input, @@ -52,7 +53,7 @@ audio { overflow: auto; flex-grow: 1; flex-shrink: 1; - padding: 0.5em; + padding: 0; >div { white-space: pre-wrap; -- cgit v1.3.1