about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-12-18 14:25:54 -0600
committerGitHub <noreply@github.com>2024-12-18 20:25:54 +0000
commit62daf047ca1f6d6529fe3196c11de97fdf8fd702 (patch)
tree7f4f302887662344af2b18d97c068e2f128cef40 /src
parent674153c7258da7454dde649c920b29937c8e0ba8 (diff)
downloadvoidsky-62daf047ca1f6d6529fe3196c11de97fdf8fd702.tar.zst
Adjust height of radio (#7164)
Diffstat (limited to 'src')
-rw-r--r--src/components/Menu/index.tsx6
-rw-r--r--src/components/Menu/index.web.tsx8
2 files changed, 7 insertions, 7 deletions
diff --git a/src/components/Menu/index.tsx b/src/components/Menu/index.tsx
index d79b0ff90..f4f33235a 100644
--- a/src/components/Menu/index.tsx
+++ b/src/components/Menu/index.tsx
@@ -201,8 +201,8 @@ export function ItemRadio({selected}: {selected: boolean}) {
         t.atoms.border_contrast_high,
         {
           borderWidth: 1,
-          height: 24,
-          width: 24,
+          height: 20,
+          width: 20,
         },
       ]}>
       {selected ? (
@@ -210,7 +210,7 @@ export function ItemRadio({selected}: {selected: boolean}) {
           style={[
             a.absolute,
             a.rounded_full,
-            {height: 16, width: 16},
+            {height: 14, width: 14},
             selected
               ? {
                   backgroundColor: t.palette.primary_500,
diff --git a/src/components/Menu/index.web.tsx b/src/components/Menu/index.web.tsx
index bc8596218..6bbb8c21c 100644
--- a/src/components/Menu/index.web.tsx
+++ b/src/components/Menu/index.web.tsx
@@ -315,8 +315,8 @@ export function ItemRadio({selected}: {selected: boolean}) {
         t.atoms.border_contrast_high,
         {
           borderWidth: 1,
-          height: 24,
-          width: 24,
+          height: 20,
+          width: 20,
         },
       ]}>
       {selected ? (
@@ -324,7 +324,7 @@ export function ItemRadio({selected}: {selected: boolean}) {
           style={[
             a.absolute,
             a.rounded_full,
-            {height: 16, width: 16},
+            {height: 14, width: 14},
             selected
               ? {
                   backgroundColor: t.palette.primary_500,
@@ -343,7 +343,7 @@ export function LabelText({children}: {children: React.ReactNode}) {
     <Text
       style={[
         a.font_bold,
-        a.pt_lg,
+        a.pt_md,
         a.pb_sm,
         t.atoms.text_contrast_low,
         {