fix(config): make api key modal input layout responsive

This commit is contained in:
Supra4E8C
2026-03-07 14:24:26 +08:00
parent 56da24765f
commit bfd3632f95
2 changed files with 29 additions and 12 deletions
@@ -39,6 +39,16 @@
align-items: center;
}
.apiKeyModalInputRow {
display: flex;
gap: 8px;
align-items: center;
:global(.input) {
flex: 1;
}
}
@media (max-width: 900px) {
.payloadRuleModelRow,
.payloadRuleModelRowProtocolFirst,
@@ -47,6 +57,11 @@
grid-template-columns: minmax(0, 1fr);
}
.apiKeyModalInputRow {
flex-direction: column;
align-items: stretch;
}
.payloadRowActionButton {
width: 100%;
}