This commit is contained in:
2024-06-05 20:08:02 +02:00
parent 1e526fd38a
commit af837c2a6e
7 changed files with 34 additions and 21 deletions

View File

@@ -731,4 +731,11 @@ async function surveySubmit() {
content.checked = false;
comment.value = "";
}
}
async function toggleRegister() {
let loginForm = document.getElementById("sign_in_form");
let registerForm = document.getElementById("sign_up_form");
loginForm.classList.toggle('hidden');
registerForm.classList.toggle('hidden');
}

View File

@@ -410,6 +410,10 @@ div#articleslist>article{
@media (max-width: 1050px) {
table .rozvrh {
overflow: auto;
}
.navsite_item .navpage_list {
max-height: unset !important;
}