mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-14 10:13:52 -04:00
Alt-Dark, Dark, Origine, and Pafat use `border-bottom: 1px solid` on `.header > .item`, making their wide-view header 57px tall (56px content + 1px border). Other shipped themes have no such border and render at 56px. Replace `border-bottom` with `box-shadow: inset 0 -1px 0`. Visually identical (same colour, same position at the bottom of each header cell), but the shadow doesn't add to the box height. Wide-view header outerHeight becomes 56px across themes, which lets the shared `--height-header: 56px` token introduced in #8783 produce pixel-perfect alignment between the wide header and the narrow drawer X button. Without this PR, those four themes carry a 1px residual offset under #8783's alignment fix. Co-authored-by: Bjørn A. Andersen <polybjorn@users.noreply.github.com>