forked from mongodb-university/realm-tutorial-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.js
More file actions
38 lines (36 loc) · 695 Bytes
/
stylesheet.js
File metadata and controls
38 lines (36 loc) · 695 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
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
inputContainer: {
padding: 5,
},
inputStyle: {
borderColor: '#ccc',
borderWidth: 1,
padding: 10,
borderRadius: 2,
},
manageTeamWrapper: {
width: 350,
},
manageTeamTitle: {
marginBottom: 10,
},
addTeamMemberInput: {
borderBottomColor: '#888',
borderBottomWidth: 1,
marginTop: 5,
fontSize: 18,
},
manageTeamButtonContainer: {
textAlign: 'left',
borderTopColor: 'grey',
borderTopWidth: 1,
borderBottomColor: 'grey',
borderBottomWidth: 1,
},
plusButton: {
fontSize: 28,
fontWeight: '400',
},
});
export default styles;