File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 598598 gap : 0 ;
599599 height : 100% ;
600600 }
601- .ga-section { display : flex; flex-direction : column; min-width : 0 ; }
601+ .ga-section { display : flex; flex-direction : column; min-width : 0 ; min-height : 0 ; }
602602 .ga-section .cum { padding-left : 22px ; border-left : 1px solid var (--hairline ); }
603603 .ga-section .live { padding-right : 22px ; }
604604 .ga-section-head {
702702 border-bottom : var (--ga-row-border ) dashed var (--hairline );
703703 }
704704 .ga-path-row : last-child { border-bottom : none; }
705- /* Cap the top-pages scroll area to 5 rows; anything beyond scrolls. */
706- .ga-paths-list { max-height : calc (5 * var (--ga-row-h )); }
705+ /* Cap the top-pages scroll area to 5 rows; anything beyond scrolls.
706+ +4px safety margin avoids the last row being cut by sub-pixel rounding
707+ (iOS Safari was occasionally clipping ~1px off, making the 5th row
708+ look broken even when no real overflow existed). */
709+ .ga-paths-list { max-height : calc (5 * var (--ga-row-h ) + 4px ); }
707710 .ga-path-name {
708711 font-family : 'Source Serif 4' , serif;
709712 color : var (--ink );
You can’t perform that action at this time.
0 commit comments