From 8b4c6aaabc2e08dcd9dd3f546d476e494c436642 Mon Sep 17 00:00:00 2001 From: GleidsonDaniel Date: Mon, 18 Mar 2024 15:51:02 -0300 Subject: [PATCH] chore: fix some colors --- app/containers/ActionSheet/BottomSheetContent.tsx | 2 +- app/containers/ActionSheet/Item.tsx | 2 +- app/containers/CallHeader.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/containers/ActionSheet/BottomSheetContent.tsx b/app/containers/ActionSheet/BottomSheetContent.tsx index 77c016bd9..a1983d188 100644 --- a/app/containers/ActionSheet/BottomSheetContent.tsx +++ b/app/containers/ActionSheet/BottomSheetContent.tsx @@ -48,7 +48,7 @@ const BottomSheetContent = React.memo(({ options, hasCancel, hide, children, onL style={{ backgroundColor: colors.strokeExtraDark }} keyboardDismissMode='interactive' indicatorStyle='black' - contentContainerStyle={{ paddingBottom: bottom }} + contentContainerStyle={{ paddingBottom: bottom, backgroundColor: colors.strokeExtraDark }} ItemSeparatorComponent={List.Separator} ListHeaderComponent={List.Separator} ListFooterComponent={renderFooter} diff --git a/app/containers/ActionSheet/Item.tsx b/app/containers/ActionSheet/Item.tsx index 64c405c35..2ccd09700 100644 --- a/app/containers/ActionSheet/Item.tsx +++ b/app/containers/ActionSheet/Item.tsx @@ -39,7 +39,7 @@ export const Item = React.memo(({ item, hide }: IActionSheetItem) => { {item.icon ? : null} - + {item.title} diff --git a/app/containers/CallHeader.tsx b/app/containers/CallHeader.tsx index 20fc3dc78..79e45b4e8 100644 --- a/app/containers/CallHeader.tsx +++ b/app/containers/CallHeader.tsx @@ -81,7 +81,7 @@ function useStyle() { actionSheetHeaderTitle: { fontSize: 14, ...sharedStyles.textBold, - color: colors.surfaceHover + color: colors.fontDefault }, actionSheetHeaderButtons: { flex: 1, alignItems: 'center', flexDirection: 'row', justifyContent: 'flex-end' }, iconCallContainer: {