about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-07-05 12:26:58 -0700
committerPaul Frazee <pfrazee@gmail.com>2024-07-05 12:26:58 -0700
commitbaa788de387cfb752db4e7af2bd07a5495caff9f (patch)
treec3b24e277c1abd08626c5ee634a22274b7fb87f5
parent09dfc9edf820396ba0132e89ed6d98c2a4231d5d (diff)
downloadvoidsky-baa788de387cfb752db4e7af2bd07a5495caff9f.tar.zst
Tweak checkmark size
-rw-r--r--src/components/ProgressGuide/Task.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ProgressGuide/Task.tsx b/src/components/ProgressGuide/Task.tsx
index d286b8842..a83715a42 100644
--- a/src/components/ProgressGuide/Task.tsx
+++ b/src/components/ProgressGuide/Task.tsx
@@ -22,7 +22,7 @@ export function ProgressGuideTask({
   return (
     <View style={[a.flex_row, a.gap_sm, !subtitle && a.align_center]}>
       {current === total ? (
-        <AnimatedCheck playOnMount fill={t.palette.primary_500} width={24} />
+        <AnimatedCheck playOnMount fill={t.palette.primary_500} width={20} />
       ) : (
         <Progress.Circle
           progress={current / total}