Skip to content

Commit

Permalink
Temporary fix for android scrollview background bleeding
Browse files Browse the repository at this point in the history
  • Loading branch information
maricalucian authored and krisboit committed Oct 21, 2019
1 parent ef602e8 commit 92107aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/account-card/styles.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { StyleSheet } from 'react-native';
import { StyleSheet, Platform } from 'react-native';
import { ITheme } from '../../core/theme/itheme';

export default (theme: ITheme) =>
StyleSheet.create({
container: {
backgroundColor: theme.colors.cardBackground,
borderRadius: 6,
borderRadius: Platform.OS === 'ios' ? 6 : 0,
height: 80,
display: 'flex',
justifyContent: 'space-between',
Expand Down

0 comments on commit 92107aa

Please sign in to comment.