Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparowhawk committed Nov 7, 2024
1 parent e261f14 commit f7f9bfb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion VAMobile/src/components/VABulletList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ const VABulletList: FC<VABulletListProps> = ({ listOfText, paragraphSpacing }) =
accessible={true}
accessibilityRole="text">
<Box mr={20} mt={12}>
<Box backgroundColor={'bullet'} height={6} width={6} />
<Box
backgroundColor={color === 'primaryContrast' ? 'brandedMainBackground' : 'bullet'}
height={6}
width={6}
/>
</Box>
<TextView {...textViewProps} accessibilityLabel={a11yLabel}>
{!!boldedTextPrefix && <TextView variant="MobileBodyBold">{boldedTextPrefix}</TextView>}
Expand Down

0 comments on commit f7f9bfb

Please sign in to comment.