diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-07-05 12:26:58 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-07-05 12:26:58 -0700 |
commit | baa788de387cfb752db4e7af2bd07a5495caff9f (patch) | |
tree | c3b24e277c1abd08626c5ee634a22274b7fb87f5 /src/components/ProgressGuide | |
parent | 09dfc9edf820396ba0132e89ed6d98c2a4231d5d (diff) | |
download | voidsky-baa788de387cfb752db4e7af2bd07a5495caff9f.tar.zst |
Tweak checkmark size
Diffstat (limited to 'src/components/ProgressGuide')
-rw-r--r-- | src/components/ProgressGuide/Task.tsx | 2 |
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} |