Skip to content

Commit

Permalink
style(table): style table margins
Browse files Browse the repository at this point in the history
  • Loading branch information
pbasti authored and navarroaxel committed Mar 26, 2018
1 parent 9e42d03 commit f880596
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/Table/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,24 @@ import {StyleSheet} from 'react-native';
export default StyleSheet.create({
row: {
marginRight: 10,
marginLeft: 10,
borderBottomWidth: 1,
borderBottomColor: '#dcddde'
},
col: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center'
alignItems: 'center',
padding: 5
},
tableHeader: {
marginTop: 30,
flex: 0.05,
flex: 0.08,
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
borderBottomWidth: 1,
borderBottomColor: '#b1b4b5'
borderBottomColor: '#b1b4b5',
backgroundColor: '#dee2e3'
}
});

0 comments on commit f880596

Please sign in to comment.