Fix API keys header layout
CI / Rust Checks (push) Successful in 5m34s
CI / UI Checks (push) Successful in 4s
CI / Deployment Manifests (push) Successful in 3s
CI / Frontend E2E (push) Successful in 3m22s
CI / Deploy (push) Successful in 1m31s

This commit is contained in:
github-ops
2026-06-25 06:40:53 +00:00
parent 9ba2aa3f38
commit d34c8a73d6
+19 -7
View File
@@ -45,17 +45,29 @@
color: #fff;
}
.key-kind-header-control {
display: flex;
display: grid;
grid-template-columns: auto auto;
align-items: center;
gap: 10px;
flex-wrap: wrap;
justify-content: flex-end;
justify-content: space-between;
width: 100%;
}
.key-kind-header-hint {
flex-basis: 100%;
grid-column: 1 / -1;
max-width: 520px;
margin: 0;
text-align: right;
text-align: left;
}
.api-keys-page-header {
display: grid;
grid-template-columns: 1fr;
gap: 14px;
}
.api-keys-page-header .page-header-text {
max-width: 680px;
}
.api-keys-page-header .page-header-actions {
width: 100%;
}
.approval-warning-callout {
display: flex;
@@ -76,7 +88,7 @@
@media (max-width: 720px) {
#keys-table-wrap { display: none; }
.keys-card-list { display: grid; }
.key-kind-header-control { justify-content: stretch; width: 100%; }
.key-kind-header-control { grid-template-columns: 1fr; justify-content: stretch; width: 100%; }
.key-kind-tabs { width: 100%; }
.key-kind-tab { flex: 1; }
.key-kind-header-hint { text-align: left; }
@@ -148,7 +160,7 @@
<!-- ═══════════════════ PAGE ═══════════════════ -->
<div class="page">
<div class="page-header">
<div class="page-header api-keys-page-header">
<div class="page-header-text">
<h1 class="page-title" data-i18n="apikeys.title">Agent Keys</h1>
<p class="page-subtitle" data-i18n="apikeys.subtitle">These keys connect an MCP client to the MCP server and are issued for a specific agent.</p>