[frontend/components] Properly limit global dialog max width on mobile
This commit is contained in:
parent
d7ec77f8e1
commit
4266629302
4 changed files with 24 additions and 0 deletions
|
@ -41,3 +41,9 @@
|
|||
background: var(--accent-color);
|
||||
color: var(--font-color);
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.confirm {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
|
@ -34,3 +34,9 @@
|
|||
background: var(--accent-color);
|
||||
color: var(--font-color);
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.notice {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
|
@ -46,3 +46,9 @@
|
|||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.prompt {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
|
@ -37,3 +37,9 @@
|
|||
background: var(--accent-color);
|
||||
color: var(--font-color);
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.select {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue