forked from beefe/react-native-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
62 lines (55 loc) · 1.11 KB
/
styles.js
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
53
54
55
56
57
58
59
60
61
62
'use strict';
import React from 'react';
import { StyleSheet } from 'react-native';
const hairlineWidth = StyleSheet.hairlineWidth;
export const BG_COLOR = '#d2d5dc';
export default StyleSheet.create({
wrapper: {
flexDirection: 'row',
backgroundColor: '#f4f4f4'
},
main: {
flex: 1,
alignSelf: 'flex-end'
},
row: {
flexDirection: 'row'
}
});
export const keyStyle = StyleSheet.create({
wrapper: {
flex: 1,
height: 48,
backgroundColor: '#fff'
},
bd: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
borderRightWidth: hairlineWidth,
borderTopWidth: hairlineWidth,
borderColor: '#a5a5a5'
},
border: {
borderColor: '#FFF'
},
mainText: {
fontSize: 20,
color: '#000'
},
otherText: {
fontSize: 10,
color: '#333',
},
bg_d2d5dc: {
backgroundColor: BG_COLOR
},
bgLessL: {
backgroundColor: '#fff'
},
dot: {
height: 30,
fontSize: 30,
lineHeight: 25
}
});