vn-verdnaturachat/app/views/NotificationPreferencesView/styles.js

32 lines
540 B
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
import sharedStyles from '../Styles';
export default StyleSheet.create({
sectionSeparatorBorder: {
height: 10
},
marginBottom: {
2019-12-04 16:39:53 +00:00
height: 30
},
contentContainer: {
marginVertical: 10
},
infoText: {
...sharedStyles.textRegular,
fontSize: 13,
paddingHorizontal: 15,
2019-12-04 16:39:53 +00:00
paddingVertical: 10
},
sectionTitle: {
...sharedStyles.separatorBottom,
paddingHorizontal: 15,
paddingVertical: 10,
2019-12-04 16:39:53 +00:00
fontSize: 14
},
pickerText: {
...sharedStyles.textRegular,
2019-12-04 16:39:53 +00:00
fontSize: 16
}
});