diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 16ff1e6..72760b0 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -16,7 +16,8 @@ "vscode": { // Add the IDs of extensions you want installed when the container is created. "extensions": [ - "mongodb.mongodb-vscode" + "mongodb.mongodb-vscode", + "ms-azuretools.vscode-docker" ] } } diff --git a/nodemon.json b/nodemon.json index 7dbf4e7..fb70b10 100644 --- a/nodemon.json +++ b/nodemon.json @@ -1,5 +1,5 @@ { - "watch": ["src", "src/public", "src/views", "config"], - "ext": "js,json,html,ejs", + "watch": ["src", "src/public", "src/views", "config", "stylesheets"], + "ext": "js,json,css,html,ejs", "exec": "node ./src/server.js" } \ No newline at end of file diff --git a/src/public/stylesheets/style.css b/src/public/stylesheets/style.css index e2b31d5..b175100 100644 --- a/src/public/stylesheets/style.css +++ b/src/public/stylesheets/style.css @@ -86,6 +86,7 @@ a { position: absolute; left: 566px; top: 301px; + cursor: pointer; } .login-mask:focus { @@ -154,6 +155,7 @@ a { position: absolute; left: 529px; top: 405px; + cursor: pointer; } #wrong-solution { diff --git a/src/public/userpass.html b/src/public/userpass.html index 541734a..993c7c7 100644 --- a/src/public/userpass.html +++ b/src/public/userpass.html @@ -50,7 +50,7 @@ document.getElementById("login-hint-map").addEventListener("mouseout", function (event) { document.getElementById("login-hint").style.visibility = "hidden"; - }); + }); \ No newline at end of file