diff --git a/apps/web/src/components/features/config-profiles/ConfigProfileEditorPanel.tsx b/apps/web/src/components/features/config-profiles/ConfigProfileEditorPanel.tsx index f51ab35..883c7fe 100644 --- a/apps/web/src/components/features/config-profiles/ConfigProfileEditorPanel.tsx +++ b/apps/web/src/components/features/config-profiles/ConfigProfileEditorPanel.tsx @@ -294,7 +294,7 @@ export const ConfigProfileEditorPanel = ({ onFormChange("git_mounts", git_mounts)} /> -
+
)} - + ); }; diff --git a/apps/web/src/styles/global.css b/apps/web/src/styles/global.css index fa6f143..95da1fc 100644 --- a/apps/web/src/styles/global.css +++ b/apps/web/src/styles/global.css @@ -378,9 +378,9 @@ .project-card { display: flex; - justify-content: space-between; - align-items: flex-start; - gap: 1rem; + flex-direction: column; + align-items: stretch; + gap: 0; } .project-info h3 { @@ -635,6 +635,16 @@ margin-bottom: 0; } +.config-section-actions { + display: flex; + align-items: center; + justify-content: flex-start; + gap: var(--space-3); + margin-top: var(--space-2); + padding-top: var(--space-3); + border-top: 1px solid var(--border); +} + /* Legacy alias for existing consumers */ .form-section { padding: var(--space-4);