refactor(control-ui): keep quick settings personal card balanced (#71585)

This commit is contained in:
Val Alexander
2026-04-25 19:23:43 -05:00
committed by GitHub
parent e6ee4d6e68
commit 41282fcb13
3 changed files with 2 additions and 9 deletions

View File

@@ -404,12 +404,6 @@
fill: currentColor;
}
.qs-personal-actions {
display: flex;
gap: 8px;
padding: 10px 16px 16px;
}
.qs-row__chevron svg {
width: 12px;
height: 12px;

View File

@@ -12,7 +12,6 @@ describe("config-quick styles", () => {
expect(css).toContain(".qs-identity-card__error");
expect(css).toContain(".qs-assistant-avatar");
expect(css).toContain(".qs-user-avatar");
expect(css).toContain(".qs-personal-actions");
expect(css).toContain(".qs-card--personal");
});

View File

@@ -994,9 +994,9 @@ export function renderQuickSettings(props: QuickSettingsProps) {
<div class="qs-grid">
${renderStack(renderModelCard(props), renderSecurityCard(props))}
${renderChannelsCard(props)}
${renderChannelsCard(props)} ${renderPersonalCard(props)}
${renderStack(renderAppearanceCard(props), renderAutomationsCard(props))}
${renderPersonalCard(props)} ${renderPresetsCard(props)}
${renderPresetsCard(props)}
</div>
${renderConnectionFooter(props)}