styles.js
1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { setUnit } from '../../libs/utils'
export const styles = StyleSheet.create({
body: {
flex: 1,
backgroundColor: 'rgba(0,0,0,.08)',
paddingLeft: setUnit(75),
paddingRight: setUnit(75),
paddingTop: setUnit(20)
},
passwdBox: {
width: setUnit(600),
marginTop: setUnit(20),
height: setUnit(100),
backgroundColor: Colors.white,
position: 'relative',
borderColor: 'rgba(0,0,0,.4)',
borderWidth: 3,
marginBottom: setUnit(100)
},
passwdItem: {
height: setUnit(90),
width: setUnit(97),
backgroundColor: Colors.white,
position: 'absolute',
top: 0,
borderRightWidth: 3,
borderRightColor: 'rgba(0,0,0,.4)',
zIndex: 1,
justifyContent: 'center',
alignItems: 'center'
},
itemIcon: {
width: setUnit(20),
height: setUnit(20),
backgroundColor: '#000000',
borderRadius: 20
},
passwd: {
height: setUnit(100),
width: setUnit(100),
borderLeftColor: 'rgba(0,0,0,0)',
borderLeftWidth: 3,
borderBottomColor: 'rgba(0,0,0,.4)',
borderBottomWidth: 3,
opacity: 0,
color: 'rgba(0,0,0,0)',
zIndex: 2
}
})