dashboard: stop nav-link icons cramming against the head row's right edge

The per-container nav strip's <a> elements had class "meta nav-link".
`.container-row .head .meta { margin-left: auto }` then matched every
link, so as flex siblings the first one absorbed all the available
space and the rest packed against it on the right — the icons looked
like they overlapped (issue #333).

Drop `meta` from the link class. Add a `.nav-strip` rule that is
inline-flex with a 0.35em gap so the icons sit on a fixed cadence
regardless of how many backend-supplied links land. Give .nav-link a
real hit target (0.15em / 0.35em padding) + a subtle hover so the
icons read as interactive.
This commit is contained in:
iris 2026-05-23 02:43:12 +02:00
parent 2c087f53ed
commit 5887111327
2 changed files with 26 additions and 1 deletions

View file

@ -662,7 +662,7 @@
: lnk.kind === 'external' ? (lnk.url || '')
: /* container */ containerBase + (lnk.url || '');
const a = el('a', {
class: 'meta nav-link',
class: 'nav-link',
href,
target: '_blank',
rel: 'noopener',