chore: fix some colors
This commit is contained in:
parent
b7e86bd088
commit
8b4c6aaabc
app/containers
|
@ -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}
|
||||
|
|
|
@ -39,7 +39,7 @@ export const Item = React.memo(({ item, hide }: IActionSheetItem) => {
|
|||
<Touch onPress={onPress} style={[styles.item, { backgroundColor: colors.surfaceLight }]} testID={item.testID}>
|
||||
{item.icon ? <CustomIcon name={item.icon} size={20} color={color} /> : null}
|
||||
<View style={styles.titleContainer}>
|
||||
<Text numberOfLines={1} style={[styles.title, { color: colors.fontDanger, marginLeft: item.icon ? 16 : 0 }]}>
|
||||
<Text numberOfLines={1} style={[styles.title, { color: colors.fontDefault, marginLeft: item.icon ? 16 : 0 }]}>
|
||||
{item.title}
|
||||
</Text>
|
||||
</View>
|
||||
|
|
|
@ -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: {
|
||||
|
|
Loading…
Reference in New Issue