style.js 825 Bytes
import { StyleSheet } from 'react-native'
import { setUnit } from '../../libs/utils'

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff'
  },
  header: {
    marginTop: setUnit(112),
    alignItems: 'center'
  },
  logo: {
    width: setUnit(160),
    height: setUnit(160)
  },
  name: {
    marginTop: setUnit(32),
    color: '#262626',
    fontWeight: '500',
    fontSize: setUnit(40)
  },
  version: {
    marginTop: setUnit(12),
    color: '#262626',
    fontSize: setUnit(32)
  },
  center: {
    marginTop: setUnit(56)
  },
  footer: {
    alignItems: 'center',
    paddingBottom: setUnit(48)
  },
  private: {
    fontSize: setUnit(26),
    color: '#6292D0'
  },
  copyright: {
    marginTop: setUnit(24),
    textAlign: 'center',
    color: '#8c8c8c',
  }
})

export { styles }