Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

Fix notifications badge on web (#8347)

* Add notificationCountWeb style

* Apply styles.notificationCountWeb to BottomBarWeb NavItem

authored by

Jerry Chen and committed by
GitHub
ce2fffc8 6c28d7d5

+6 -1
+5
src/view/shell/bottom-bar/BottomBarStyles.tsx
··· 30 30 borderRadius: 6, 31 31 zIndex: 1, 32 32 }, 33 + notificationCountWeb: { 34 + paddingTop: 3, 35 + paddingBottom: 3, 36 + borderRadius: 12, 37 + }, 33 38 notificationCountLight: { 34 39 borderColor: colors.white, 35 40 },
+1 -1
src/view/shell/bottom-bar/BottomBarWeb.tsx
··· 265 265 {children({isActive})} 266 266 {notificationCount ? ( 267 267 <View 268 - style={styles.notificationCount} 268 + style={[styles.notificationCount, styles.notificationCountWeb]} 269 269 aria-label={_( 270 270 msg`${plural(notificationCount, { 271 271 one: '# unread item',