this repo has no description
0
fork

Configure Feed

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

Double make sure header change doesn't block scrolling

+15 -2
+1
src/pages/status.css
··· 7 7 text-overflow: ellipsis; 8 8 overflow: hidden; 9 9 white-space: nowrap; 10 + align-self: stretch; 10 11 } 11 12 .status-deck header h1 .deck-back { 12 13 margin-left: -16px;
+14 -2
src/pages/status.jsx
··· 735 735 <> 736 736 <InView 737 737 threshold={0.1} 738 - onChange={setHeroInView} 738 + onChange={(inView) => { 739 + queueMicrotask(() => { 740 + requestAnimationFrame(() => { 741 + setHeroInView(inView); 742 + }); 743 + }); 744 + }} 739 745 class="status-focus" 740 746 tabIndex={0} 741 747 > ··· 813 819 <InView 814 820 skip={i !== 0 || !ancestor} 815 821 threshold={0.5} 816 - onChange={setReachTopPost} 822 + onChange={(inView) => { 823 + queueMicrotask(() => { 824 + requestAnimationFrame(() => { 825 + setReachTopPost(inView); 826 + }); 827 + }); 828 + }} 817 829 > 818 830 <Status 819 831 statusID={statusID}