-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathBridgeView.styles.ts
More file actions
61 lines (60 loc) · 1.34 KB
/
BridgeView.styles.ts
File metadata and controls
61 lines (60 loc) · 1.34 KB
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
import { StyleSheet } from 'react-native';
import { Theme } from '../../../../../util/theme/models';
export const createStyles = (params: { theme: Theme }) => {
const { theme } = params;
return StyleSheet.create({
content: {
flex: 1,
},
screen: {
flex: 1,
},
inputsContainer: {
paddingVertical: 12,
paddingHorizontal: 24,
},
buttonContainer: {
width: '100%',
paddingHorizontal: 16,
gap: 12,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: theme.colors.background.default,
},
quoteContainer: {
justifyContent: 'flex-start',
},
destinationAccountSelectorContainer: {
paddingBottom: 12,
},
dynamicContent: {
justifyContent: 'flex-start',
},
keypadContainerWithDestinationPicker: {
justifyContent: 'flex-end',
paddingBottom: 8,
},
scrollView: {
flex: 1,
},
scrollViewContent: {
flexGrow: 1,
paddingBottom: 16,
},
loadingContainer: {
paddingTop: 8,
},
disclaimerText: {
textAlign: 'center',
},
destTokenArea: {
// marginTop: 16,
},
keypadBottomSheet: {
marginBottom: -1,
marginHorizontal: -1,
borderColor: theme.colors.border.muted,
borderBottomColor: theme.colors.background.default,
},
});
};