Fixed bug in header type causing large margin

This commit is contained in:
Alec Maier
2019-08-31 19:49:24 -04:00
parent 6b86a70041
commit d243bb85ef

View File

@@ -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");