-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.js
More file actions
45 lines (43 loc) · 941 Bytes
/
styles.js
File metadata and controls
45 lines (43 loc) · 941 Bytes
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
import { StyleSheet } from 'react-native';
import {
SECONDARY_THEME_COLOR,
MAIN_TEXT_COLOR,
ERROR_COLOR,
} from '../../../constants/theme/colors';
import {
NORMAL_TEXT_SIZE,
VALIDATOR_TEXT_SIZE,
NORMAL_TEXT_FONT_FAMILY,
} from '../../../constants/theme/colors';
const styles = StyleSheet.create({
container: {
width: '100%',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: SECONDARY_THEME_COLOR,
borderRadius: 6,
flexDirection: 'row',
paddingHorizontal: 20,
},
input: {
fontSize: NORMAL_TEXT_SIZE,
fontFamily: NORMAL_TEXT_FONT_FAMILY,
flex: 1,
padding: 14,
color: MAIN_TEXT_COLOR,
},
touchableIcon: {
width: 34,
padding: 7,
textAlign: 'center',
},
error: {
color: ERROR_COLOR,
width: '100%',
paddingHorizontal: 2,
paddingTop: 6,
textAlign: 'right',
fontSize: VALIDATOR_TEXT_SIZE,
},
});
export default styles;