From d243bb85efd96dfdd610080cd5972496f7221182 Mon Sep 17 00:00:00 2001 From: Alec Maier Date: Sat, 31 Aug 2019 19:49:24 -0400 Subject: [PATCH] Fixed bug in header type causing large margin --- static/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/game.js b/static/game.js index 11d9572..340d951 100644 --- a/static/game.js +++ b/static/game.js @@ -95,7 +95,7 @@ function renderLobby() { // Render lobby header if (document.getElementsByClassName("lobby-player").length === 0) { let header = document.createElement("h2"); - header.setAttribute("class", "app-header"); + header.setAttribute("class", "app-header-secondary"); header.innerText = "Lobby"; document.getElementById("lobby-container").appendChild(header); let subHeader = document.createElement("div");