Skip to content

1.9.1

Choose a tag to compare

@github-actions github-actions released this 25 Jun 21:58
· 9 commits to main since this release

v1.9.1: fix cards showing through the panel header while scrolling

The header was position:sticky inside a single scrolling view, which let cards
render over/through it during scroll momentum. Switch to a flex column: a fixed
header (flex:0 0 auto) plus the card list as its own scroll area
(flex:1; min-height:0; overflow-y:auto), so cards can never paint outside the list.