diff --git a/src/Planner.svelte b/src/Planner.svelte index 2bd1b2d..4554d04 100644 --- a/src/Planner.svelte +++ b/src/Planner.svelte @@ -1298,6 +1298,7 @@ ${trkpts} {:else}
{plan.waypoints?.length ?? 0} pts · {plan.profile}
{/if} + {#if plan.description}
{plan.description}
{/if} {#if plan.author}
by {plan.author}
{/if} @@ -1314,6 +1315,7 @@ ${trkpts} {:else}
{plan.waypoints?.length ?? 0} pts · {plan.profile}
{/if} + {#if plan.description}
{plan.description}
{/if} {#if browseCollId === null && plan.collection_id} {@const col = collections.find(c => c.id === plan.collection_id)} {#if col}
{col.name}
{/if} @@ -1716,6 +1718,7 @@ ${trkpts} } .plan-card-name { font-size: 0.8rem; color: var(--text-primary); font-weight: 500; margin-bottom: 0.2rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .plan-card-stats { font-size: 0.7rem; color: var(--text-5); font-variant-numeric: tabular-nums; } + .plan-card-desc { font-size: 0.68rem; color: var(--text-4); margin-top: 0.25rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; white-space: normal; } .plan-card-col { display: inline-block; margin-top: 0.3rem;