Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

ds147000 / react-native-project-storage

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • react-native-project-storage
  • src
  • views
  • about
  • feature-detail
  • style.ts
  • 杨周龙's avatar
    优化代码 · 5dec9443
    杨周龙 committed Dec 09, 2020
    5dec9443 Browse Files
style.ts 378 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { StyleSheet } from 'react-native'
import { setUnit } from '../../../libs/utils'
import { View, desc } from '../../../theme/colors'

const styles = StyleSheet.create({
    container: {
        backgroundColor: View.background,
        flex: 1,
        padding: setUnit(32)
    },
    desc: {
        color: desc,
        fontSize: setUnit(24)
    }
})

export { styles }