diff --git a/client/css/style.css b/client/css/style.css index 24b79e97..7394f07a 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -512,6 +512,10 @@ button, top: 4px; } +.signed-out #main { + left: 5px; +} + #header { display: none; height: 40px; diff --git a/client/index.html b/client/index.html index 77257141..496993f4 100644 --- a/client/index.html +++ b/client/index.html @@ -23,7 +23,7 @@ - "> + ">
@@ -60,9 +60,6 @@
-
- -
diff --git a/client/js/lounge.js b/client/js/lounge.js index 97abd25e..2ff6d519 100644 --- a/client/js/lounge.js +++ b/client/js/lounge.js @@ -77,14 +77,11 @@ $(function() { }); socket.on("auth", function(data) { - var body = $("body"); var login = $("#sign-in"); login.find(".btn").prop("disabled", false); if (!data.success) { - body.addClass("signed-out"); - window.localStorage.removeItem("token"); var error = login.find(".error");