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

@@ -215,6 +215,8 @@ onUnmounted(() => {
width: fit-content;
max-width: min(92vw, 560px);
min-width: 280px;
max-height: 90vh;
overflow-y: auto;
border: 1px solid var(--primary-accent);
box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
@@ -223,6 +225,12 @@ onUnmounted(() => {
overflow-wrap: anywhere;
}
@media (max-width: 768px), (max-height: 600px) {
.modal {
padding: 20px;
}
}
h2 {
font-size: 2.5rem;
color: var(--primary-accent);