Skip to content

Commit

Permalink
Make 'em round (#5654)
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey authored Oct 8, 2024
1 parent 8fe2427 commit 857b20b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/view/shell/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ function MenuItem({
<View
style={[
styles.menuItemCount,
a.rounded_full,
count.length > 2
? styles.menuItemCountHundreds
: count.length > 1
Expand Down
2 changes: 1 addition & 1 deletion src/view/shell/bottom-bar/BottomBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ function Btn({
targetScale={0.8}>
{icon}
{notificationCount ? (
<View style={[styles.notificationCount]}>
<View style={[styles.notificationCount, a.rounded_full]}>
<Text style={styles.notificationCountLabel}>{notificationCount}</Text>
</View>
) : undefined}
Expand Down

0 comments on commit 857b20b

Please sign in to comment.