Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

fix padding on android 15 (#7411)

authored by

Samuel Newman and committed by
GitHub
e5c58745 b49e93d5

+7 -2
+7 -2
src/view/shell/Drawer.tsx
··· 22 22 import {formatCount} from '#/view/com/util/numeric/format' 23 23 import {UserAvatar} from '#/view/com/util/UserAvatar' 24 24 import {NavSignupCard} from '#/view/shell/NavSignupCard' 25 - import {atoms as a, useTheme, web} from '#/alf' 25 + import {atoms as a, tokens, useTheme, web} from '#/alf' 26 26 import {Button, ButtonIcon, ButtonText} from '#/components/Button' 27 27 import {Divider} from '#/components/Divider' 28 28 import { ··· 306 306 a.flex_wrap, 307 307 a.pl_xl, 308 308 a.pt_md, 309 - {paddingBottom: Math.max(insets.bottom, a.pb_xl.paddingBottom)}, 309 + { 310 + paddingBottom: Math.max( 311 + insets.bottom + tokens.space.xs, 312 + tokens.space.xl, 313 + ), 314 + }, 310 315 ]}> 311 316 <Button 312 317 label={_(msg`Send feedback`)}