From 5f51aa2383b978911b5ef4c008154d88d260a898 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Mon, 13 Jul 2026 13:53:37 -0400 Subject: [PATCH] Detail pages: give the relationships card bottom spacing (was merging with Notes) .relationships-section had card styling but lacked the margin-bottom + break-inside:avoid that .section-card has, so it sat flush against the Notes card below it and looked like one merged card (and could split across a multicol break). Add both to match section-card. Affects every asset detail page. Co-Authored-By: Claude Opus 4.8 --- frontend/src/components/AssetRelationships.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/components/AssetRelationships.vue b/frontend/src/components/AssetRelationships.vue index 268f2e3..1f9bf14 100644 --- a/frontend/src/components/AssetRelationships.vue +++ b/frontend/src/components/AssetRelationships.vue @@ -502,6 +502,11 @@ function getAssetRoute(asset) { border-radius: 8px; border: 1px solid var(--border); padding: 1.25rem; + /* Match .section-card spacing so relationships is its own card with a gap + below (not visually merged with the Notes card) and does not split across + a multicol break. */ + margin-bottom: 25px; + break-inside: avoid; } .section-header {