From 5698427def47f2212af765e89390a1f5c3cfb973 Mon Sep 17 00:00:00 2001 From: gantunesr <17601467+gantunesr@users.noreply.github.com> Date: Tue, 13 Aug 2024 16:07:49 -0400 Subject: [PATCH] fix: update styles --- app/components/UI/ButtonReveal/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/components/UI/ButtonReveal/index.tsx b/app/components/UI/ButtonReveal/index.tsx index a3d7e97afef..055c6a9a49c 100644 --- a/app/components/UI/ButtonReveal/index.tsx +++ b/app/components/UI/ButtonReveal/index.tsx @@ -55,15 +55,18 @@ const createStyles = (colors: any) => preCompletedContainerStyle: { ...StyleSheet.absoluteFillObject, borderRadius: radius, + backgroundColor: colors.primary.default, }, outerCircle: { ...StyleSheet.absoluteFillObject, borderRadius: radius, + backgroundColor: colors.primary.inverse, }, innerCircle: { flex: 1, borderRadius: radius - strokeWidth, margin: strokeWidth, + backgroundColor: colors.primary.default, }, label: { color: colors.primary.inverse, @@ -270,6 +273,7 @@ const ButtonReveal = ({ onLongPress, label }: Props) => { cx={radius} cy={radius} r={innerRadius} + stroke={colors.primary.alternative} strokeWidth={strokeWidth} strokeLinecap={'round'} fill={colors.primary.inverse}