import { Platform, StyleSheet, TextStyle } from 'react-native';
import { MAX_SCREEN_CONTENT_WIDTH } from '../lib/constants';
const defaultTextStyle: TextStyle = {
textAlign: 'left',
backgroundColor: 'transparent',
...Platform.select({
android: {
includeFontPadding: false
}
})
};
export default StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column'
},
containerScrollView: {
padding: 15,
paddingBottom: 30
tabletScreenContent: {
justifyContent: 'center',
alignSelf: 'center',
width: MAX_SCREEN_CONTENT_WIDTH
modalFormSheet: {
// Following UIModalPresentationFormSheet size
// this not change on different iPad sizes
width: 540,
height: 620,
overflow: 'hidden',
borderRadius: 10
status: {
position: 'absolute',
bottom: -2,
right: -2,
textAlignCenter: {
textAlign: 'center'
opacity5: {
opacity: 0.5
loginTitle: {
fontSize: 20,
marginVertical: 15,
lineHeight: 28
loginSubtitle: {
fontSize: 16,
lineHeight: 20,
marginBottom: 15
separator: {
height: StyleSheet.hairlineWidth
separatorTop: {
borderTopWidth: StyleSheet.hairlineWidth
separatorBottom: {
borderBottomWidth: StyleSheet.hairlineWidth
separatorVertical: {
borderTopWidth: StyleSheet.hairlineWidth,
separatorLeft: {
borderLeftWidth: StyleSheet.hairlineWidth
textRegular: {
...defaultTextStyle,
ios: {
fontFamily: 'Inter',
fontWeight: '400'
fontFamily: 'Inter-Regular'
textMedium: {
fontWeight: '500'
fontFamily: 'Inter-Medium'
textSemibold: {
fontWeight: '600'
fontFamily: 'Inter-SemiBold'
textBold: {
fontWeight: '700'
fontFamily: 'Inter-Bold'
inputLastChild: {
notchLandscapeContainer: {
marginTop: -34,
paddingHorizontal: 30
});