Merge pull request #450 from esteemapp/bugfix/#385

Bugfix/#385
This commit is contained in:
uğur erdal 2019-01-17 20:25:59 +03:00 committed by GitHub
commit b4e6eaad41
3 changed files with 24 additions and 0 deletions

View File

@ -26,4 +26,23 @@ export default EStyleSheet.create({
paddingHorizontal: 0,
marginTop: 10,
},
th: {
flex: 1,
justifyContent: 'center',
fontWeight: 'bold',
color: '$primaryBlack',
fontSize: 14,
padding: 5,
},
tr: {
backgroundColor: '$darkIconColor',
flexDirection: 'row',
},
td: {
borderWidth: 0.5,
borderColor: '$tableBorderColor',
flex: 1,
padding: 10,
backgroundColor: '$tableTrColor',
},
});

View File

@ -35,6 +35,8 @@ export default {
$editorButtonColor: '#fff',
$pureWhite: '#ffffff',
$notificationBorder: '#1e2835',
$tableTrColor: '#2e3d51',
$tableBorderColor: '#1e2835',
// Devices Sizes
$deviceHeight: Dimensions.get('window').height,

View File

@ -18,6 +18,7 @@ export default {
$primaryRed: '#e63535',
$primaryBlack: '#3c4449',
$primaryDarkText: '#788187',
// General Colors
$borderColor: '#c5c5c5',
$tagColor: '#c1c5c7',
@ -34,6 +35,8 @@ export default {
$editorButtonColor: '#3c4449',
$pureWhite: '#ffffff',
$notificationBorder: '#fff',
$tableTrColor: '#f5f5f5',
$tableBorderColor: '#FFFFFF',
// Devices Sizes
$deviceHeight: Dimensions.get('window').height,