Mobile-friendly UI: hamburger nav, responsive layouts, restyle login/admin pages, fix iOS upload

This commit is contained in:
Georges Haddad
2026-04-10 16:50:15 +03:00
parent 61b9c23803
commit 7e1e0ac426
8 changed files with 391 additions and 80 deletions
+25
View File
@@ -42,3 +42,28 @@
.form-panel {
min-width: 0;
}
/* ============================
Review — Responsive
============================ */
@media (max-width: 900px) {
.review-layout {
grid-template-columns: 1fr;
}
.image-panel {
position: relative;
top: auto;
}
.image-container {
max-height: 50vh;
}
}
@media (max-width: 480px) {
.image-container {
max-height: 40vh;
}
.image-toolbar {
justify-content: center;
}
}