feat(layout): #211 optimize the overall layout for mobile
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m10s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 4m18s

move navigation to aside
proper mobile handling
update logo.svg
remove pirata-one/only use it for the logo
This commit was merged in pull request #237.
This commit is contained in:
2025-07-25 22:42:22 +02:00
parent 9fa554c60a
commit 6bc9e0666b
15 changed files with 425 additions and 62 deletions

11
static/js/layout.js Normal file
View File

@@ -0,0 +1,11 @@
document.addEventListener("DOMContentLoaded", () => {
menuButton.addEventListener("click", function (e) {
menu.showModal();
});
menuButtonClose.addEventListener("click", function (e) {
menu.close();
});
})