[frontend/components] Properly limit global dialog max width on mobile

This commit is contained in:
pancakes 2025-02-15 21:33:41 +10:00 committed by Laura Hausmann
parent d7ec77f8e1
commit 4266629302
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
4 changed files with 24 additions and 0 deletions

View file

@ -41,3 +41,9 @@
background: var(--accent-color);
color: var(--font-color);
}
@media (max-width: 1000px) {
.confirm {
max-width: 100%;
}
}

View file

@ -34,3 +34,9 @@
background: var(--accent-color);
color: var(--font-color);
}
@media (max-width: 1000px) {
.notice {
max-width: 100%;
}
}

View file

@ -46,3 +46,9 @@
opacity: 0.4;
cursor: not-allowed;
}
@media (max-width: 1000px) {
.prompt {
max-width: 100%;
}
}

View file

@ -37,3 +37,9 @@
background: var(--accent-color);
color: var(--font-color);
}
@media (max-width: 1000px) {
.select {
max-width: 100%;
}
}