ecency-mobile/src/globalStyles.js

91 lines
1.9 KiB
JavaScript
Raw Normal View History

import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({
2018-10-13 21:36:38 +03:00
containerHorizontal16: {
paddingHorizontal: 16,
2018-11-23 18:09:19 +03:00
backgroundColor: '$primaryBackgroundColor',
},
2018-10-16 21:52:02 +03:00
defaultContainer: {
flex: 1,
2019-11-25 17:54:07 +03:00
backgroundColor: '$primaryLightBackground',
2018-10-16 21:52:02 +03:00
},
listWrapper: {
paddingHorizontal: 8,
backgroundColor: '$primaryBackgroundColor',
flex: 1.7,
},
text: {
fontFamily: '$primaryFont',
letterSpacing: '$primaryLatterSpacing',
},
title: {
fontFamily: '$primaryFont',
letterSpacing: '$primaryLatterSpacing',
fontSize: 18,
fontWeight: '600',
},
subTitle: {
fontFamily: '$primaryFont',
letterSpacing: '$primaryLatterSpacing',
},
subText: {
fontFamily: '$primaryFont',
letterSpacing: '$primaryLatterSpacing',
},
shadow: {
shadowOpacity: 0.8,
shadowColor: '$shadowColor',
shadowOffset: {
width: 0,
height: 6,
},
2018-12-21 11:49:02 +03:00
elevation: 3,
},
errorText: {
fontFamily: '$primaryFont',
letterSpacing: '$primaryLatterSpacing',
width: '$deviceWidth / 1.4',
fontSize: 10,
padding: 5,
height: 50,
flex: 1,
2018-12-25 14:22:41 +03:00
color: '$primaryRed',
paddingTop: 10,
textAlign: 'center',
},
label: {
fontFamily: '$primaryFont',
letterSpacing: '$primaryLatterSpacing',
fontSize: 12,
},
2018-11-22 01:40:40 +03:00
container: {
backgroundColor: '$primaryBackgroundColor',
height: '$deviceHeight',
},
lightContainer: {
backgroundColor: '$primaryLightBackground',
flex: 1,
},
2019-01-09 02:22:48 +03:00
hintText: {
color: '$iconColor',
alignSelf: 'center',
fontSize: 16,
2019-01-09 18:07:31 +03:00
marginTop: 20,
2019-01-09 02:22:48 +03:00
fontWeight: '500',
},
tabView: {
alignSelf: 'center',
backgroundColor: '$primaryBackgroundColor',
width: '100%',
flex: 1,
},
swipeItemWrapper: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
tabBarBottom: {
2019-11-30 10:36:23 +03:00
paddingBottom: 60,
},
});