about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/view/shell/Drawer.tsx1
-rw-r--r--src/view/shell/bottom-bar/BottomBar.tsx2
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}