UNPKG

ignite-jhipster

Version:

A React Native boilerplate for JHipster apps.

27 lines (24 loc) 542 B
import { StyleSheet } from 'react-native' import { ApplicationStyles, Colors } from '../../../shared/themes' export default StyleSheet.create({ ...ApplicationStyles.screen, container: { flex: 1, padding: 20 }, buttonText: { fontSize: 18, color: 'white', alignSelf: 'center' }, button: { height: 36, backgroundColor: Colors.jhipsterBlue, borderColor: Colors.jhipsterBlue, borderWidth: 1, borderRadius: 8, marginBottom: 10, alignSelf: 'stretch', justifyContent: 'center' } })