add a couple stylistic changes to the password dialouge

This commit is contained in:
2026-04-06 16:02:34 -04:00
parent b9ed00c127
commit 5e0771d482
4 changed files with 23 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ changePasswordButton.addEventListener("click", () => {
document.getElementById("new_password").value !==
document.getElementById("new_password_repeat").value
) {
displayError("New password and new password repeat do not match");
displayError("New passwords do not match");
return;
}

View File

@@ -128,7 +128,11 @@
}
#close_password_dialogue {
width: fit-content;
display: inline-block;
aspect-ratio: 1 / 1;
position: absolute;
right: 2.5rem;
padding: 0px;
margin: 0px;
width: 30px;
}

View File

@@ -77,3 +77,8 @@ input::placeholder {
background-color: black;
opacity: 10%;
}
.dialouge_title {
font-size: 20px;
margin-bottom: 0px;
}