fix: landscape modals and iOS PWA support

This commit is contained in:
2026-02-12 18:32:49 +01:00
parent a4681b5b97
commit 27270d6452
6 changed files with 29 additions and 6 deletions

View File

@@ -340,12 +340,20 @@ const confirm = () => {
text-align: center;
max-width: 800px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
border: 1px solid var(--accent-cyan);
box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
animation: slideUp 0.3s ease;
transition: all 0.3s ease-in-out;
}
@media (max-width: 768px), (max-height: 600px) {
.modal {
padding: 20px;
}
}
.modal-content {
display: flex;
flex-direction: row;