Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Adjust header offset (#5501)

authored by

Eric Bailey and committed by
GitHub
1ae7fa63 960f4450

+3 -3
+3 -3
src/components/hooks/useHeaderOffset.ts
··· 9 9 return 0 10 10 } 11 11 const navBarHeight = 42 12 - const tabBarPad = 10 + 10 + 3 // padding + border 13 - const normalLineHeight = 1.2 14 - const tabBarText = 16 * normalLineHeight * fontScale 12 + const tabBarPad = 10 + 10 + 6 // padding + arbitrary 13 + const normalLineHeight = 20 // matches tab bar 14 + const tabBarText = normalLineHeight * fontScale 15 15 return navBarHeight + tabBarPad + tabBarText 16 16 }