diff options
author | Eric Bailey <git@esb.lol> | 2024-10-08 16:47:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 14:47:09 -0700 |
commit | 857b20b2a8c75c22d7496be8b8a436e51f7888bd (patch) | |
tree | 97ef56e2e74c93c914c7a25e9737ea312368a6e7 /src | |
parent | 8fe242728e3954e6139edc83442ab3986a4f7eae (diff) | |
download | voidsky-857b20b2a8c75c22d7496be8b8a436e51f7888bd.tar.zst |
Make 'em round (#5654)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/Drawer.tsx | 1 | ||||
-rw-r--r-- | src/view/shell/bottom-bar/BottomBar.tsx | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx index 4212b28af..51375dd32 100644 --- a/src/view/shell/Drawer.tsx +++ b/src/view/shell/Drawer.tsx @@ -584,6 +584,7 @@ function MenuItem({ <View style={[ styles.menuItemCount, + a.rounded_full, count.length > 2 ? styles.menuItemCountHundreds : count.length > 1 diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx index af06134fc..028b194c3 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -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} |