Fix small dark mode issues

This commit is contained in:
Lei Nelissen
2020-07-26 17:18:15 +02:00
parent 57b79bf4e2
commit 86a4d11f67
2 changed files with 17 additions and 16 deletions

View File

@@ -16,7 +16,7 @@ const Container = styled.TouchableOpacity`
const ListButton: React.FC<TouchableOpacityProps> = ({ children, ...props }) => {
return (
<Container {...props} style={colors.borderColor}>
<Container {...props} style={colors.border}>
<Text style={{ color: THEME_COLOR, fontSize: 16 }}>{children}</Text>
<ChevronRight width={BUTTON_SIZE} height={BUTTON_SIZE} fill={THEME_COLOR} />
</Container>