-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleSheet.tsx
54 lines (53 loc) · 1.03 KB
/
styleSheet.tsx
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
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
container: {
backgroundColor: 'grey',
height: '100%',
display: 'flex',
flexDirection: 'row',
},
contentSection:{
// backgroundColor: 'blue',
height: '100%',
width: '75%'
},
toolBoxSection:{
height: '100%',
width: '25%',
},
insertParamsSection:{
height:'60%',
// marginBottom: 'auto',
// marginTop:'auto'
marginTop:'10%'
},
infoSection:{
height:'25%',
},
title:{
backgroundColor: 'black',
color: 'white',
width: '100%',
textAlign: 'center',
fontSize: 24,
},
parameter:{
backgroundColor:'cornflowerblue',
height: 60,
},
parameterTitle:{
backgroundColor:'cornflowerblue',
// minWidth:'100px',
// width: '100%',
// fontWeight: '500',
},
parameterValue: {
backgroundColor:'cornflowerblue',
// width: '100%',
// textAlign: 'center',
height: 40,
borderBottomColor: 'black',
borderBottomWidth: 1
},
});
export default styles