diff --git a/src/lib/components/crew/CrewHeader.svelte b/src/lib/components/crew/CrewHeader.svelte index a54d3066..9517d442 100644 --- a/src/lib/components/crew/CrewHeader.svelte +++ b/src/lib/components/crew/CrewHeader.svelte @@ -23,26 +23,30 @@
-
-
- {#if backHref} -
+ {#if description} +

{description}

{/if}
- {#if description} -

{description}

- {/if} - {#if belowTitle} - {@render belowTitle()} + {#if actions} +
+ {@render actions()} +
{/if}
- {#if actions} -
- {@render actions()} + {#if belowTitle} +
+ {@render belowTitle()}
{/if}
@@ -53,18 +57,29 @@ .section-header { display: flex; - justify-content: space-between; - align-items: flex-start; + flex-direction: column; + gap: spacing.$unit; padding: spacing.$unit-2x; border-bottom: 1px solid rgba(0, 0, 0, 0.08); } + .header-top-row { + display: flex; + justify-content: space-between; + align-items: flex-start; + width: 100%; + } + .header-info { display: flex; flex-direction: column; gap: spacing.$unit; } + .header-below { + width: 100%; + } + .title-row { display: flex; align-items: center;