aboutsummaryrefslogtreecommitdiff
path: root/webAO/client.js
diff options
context:
space:
mode:
authorstonedDiscord <stoned@derpymail.org>2020-07-10 20:00:35 +0200
committerGitHub <noreply@github.com>2020-07-10 20:00:35 +0200
commitbcf2922412b429f55ad4376e74c214f3353b03d0 (patch)
tree849c52118fb5612b2a2b2fb7cb0b75485a85690c /webAO/client.js
parent768c594b60e43fe28fb197e9ca5580edba5a5c73 (diff)
parente9a114dd35484eb6ca484dbeabdc4c3fb1641a06 (diff)
Merge pull request #60 from AttorneyOnline/igiari-font
Igiari font
Diffstat (limited to 'webAO/client.js')
-rw-r--r--webAO/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/client.js b/webAO/client.js
index cab7937..b0d69bf 100644
--- a/webAO/client.js
+++ b/webAO/client.js
@@ -2619,7 +2619,7 @@ export function resizeChatbox() {
const chatContainerBox = document.getElementById("client_chatcontainer");
const gameHeight = document.getElementById("client_background").offsetHeight;
- chatContainerBox.style.fontSize = (gameHeight * 0.05) + "px";
+ chatContainerBox.style.fontSize = (gameHeight * 0.0521).toFixed(1) + "px";
}
window.resizeChatbox = resizeChatbox;