fix(auth-files): restore mobile wrapping

This commit is contained in:
Supra4E8C
2026-07-30 03:56:03 +08:00
parent c9636a3c54
commit 6360b52d18
3 changed files with 36 additions and 0 deletions
@@ -69,6 +69,7 @@
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
.pageInfo {
@@ -490,6 +490,26 @@
white-space: nowrap;
}
@include mobile {
.actions {
flex-wrap: wrap;
}
.actionsMain {
width: 100%;
}
.actionsMain > :global(.btn) {
flex: 1 1 auto;
min-width: 0;
}
.toggleWrap {
width: 100%;
justify-content: space-between;
}
}
/* ---------- 降级 ---------- */
@media (prefers-reduced-motion: reduce) {
@@ -259,6 +259,21 @@ button.quotaMessageAction {
overflow-wrap: anywhere;
}
@include mobile {
.quotaRowHeader {
flex-direction: column;
align-items: flex-start;
}
.quotaModel {
width: 100%;
white-space: normal;
overflow: visible;
text-overflow: clip;
overflow-wrap: anywhere;
}
}
/* ---------- 降级 ---------- */
@media (prefers-reduced-motion: reduce) {