A calm place to write long-form, and publish it to the open social web. skypress.blog/
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix vertical alignment of reader author block in meta line

The .reader__author inline-flex box is sized by the 22px avatar, but
inline boxes default to vertical-align: baseline. That baseline-anchored
the tall author box against the shorter meta text (separators, date,
reading time), leaving the avatar visually misaligned. Aligning the
author box to vertical-align: middle puts the avatar, name, and trailing
meta text on a common centerline.

+1
+1
src/pages/[author]/[slug]/[rkey].astro
··· 215 215 .reader__author { 216 216 display: inline-flex; 217 217 align-items: center; 218 + vertical-align: middle; 218 219 gap: 0.4rem; 219 220 color: var(--ink-soft); 220 221 text-decoration: none;