-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle_Init.js
65 lines (55 loc) · 1.08 KB
/
Style_Init.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
63
64
65
import styled from 'styled-components/native';
export const Header = styled.View`
backgroundColor: rgb(255,101,9);
alignItems: center;
justifyContent: center;
padding:83px;
width:100%;
`;
export const Container = styled.View`
alignItems: center;
`;
export const Logo = styled.Image`
scaleX:0.6;
scaleY:0.6;
`;
export const Body = styled.View`
flex 1;
alignItems: center;
justifyContent: center;
backgroundColor: rgb(250,250,250);
padding:20px;
width:94%;
border-radius:10;
position: absolute;
left: 12;
right: 0;
top: 225;
`;
export const Texto = styled.Text`
color:#FFF
fontSize:15
;`;
export const Nome = styled.Text``;
export const Conta = styled.Text`
color:#aaa;
`;
export const Sigla = styled.View`
padding:14px;
backgroundColor: #eee;
border-radius:100;
`;
export const SiglaTexto = styled.Text`
color:#fff;
fontSize:18
`;
export const Title = styled.View`
flex-direction: row;
paddingBottom:30;
alignItems: center;
justifyContent: center;
`;
export const Dados = styled.View`
paddingLeft:15;
width:140;
`;