Compare commits

..

No commits in common. "e6ccec3e9349cda4e3c9c5a65eaa3e03943e727b" and "3edf2ce8a3ece907bcd538f66dd6d52d4a9369b1" have entirely different histories.

2 changed files with 6 additions and 14 deletions

View File

@ -102,17 +102,11 @@
width: fit-content; width: fit-content;
} }
.user-image {
border: 5px solid white;
border-radius: 0.4rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.349);
}
#user-img { #user-img {
border-radius: .2rem; border-radius: .2rem;
width: 80px; width: 80px;
/* somehow its misplaced without that */ border: 3px solid white;
transform: translate(-0.25px, 0.25px) scale(1.05); box-shadow: 0 0 15px rgba(0, 0, 0, 0.349);
} }
.form-outline .form-control:focus~.form-notch .form-notch-leading { .form-outline .form-control:focus~.form-notch .form-notch-leading {

View File

@ -120,14 +120,12 @@ window.addEventListener('DOMContentLoaded', () => {
function changePage(page) { function changePage(page) {
switch (page) { switch (page) {
case "login": case "login":
$("#launch-page").fadeOut(50, "swing", () => { $("#launch-page").hide();
$("#login-page").fadeIn(350); $("#login-page").fadeIn(350);
});
break; break;
case "launch": case "launch":
$("#login-page").fadeOut(50, "swing", () => { $("#login-page").hide();
$("#launch-page").fadeIn(350); $("#launch-page").fadeIn(350);
});
break; break;
} }
} }