-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathIterableEmbeddedNotification.styles.ts
More file actions
61 lines (59 loc) · 1.22 KB
/
Copy pathIterableEmbeddedNotification.styles.ts
File metadata and controls
61 lines (59 loc) · 1.22 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';
const SHADOW_COLOR = 'rgba(0, 0, 0, 0.06)';
export const styles = StyleSheet.create({
body: {
alignSelf: 'stretch',
fontSize: 14,
fontWeight: '400',
lineHeight: 20,
},
bodyContainer: {
display: 'flex',
flexDirection: 'column',
flexGrow: 1,
flexShrink: 1,
gap: 4,
width: '100%',
},
button: {
borderRadius: 32,
gap: 8,
paddingHorizontal: 12,
paddingVertical: 8,
},
buttonContainer: {
alignItems: 'flex-start',
alignSelf: 'stretch',
display: 'flex',
flexDirection: 'row',
gap: 12,
width: '100%',
},
buttonText: {
fontSize: 14,
fontWeight: '700',
lineHeight: 20,
},
container: {
alignItems: 'flex-start',
borderStyle: 'solid',
boxShadow:
`0 1px 1px 0 ${SHADOW_COLOR}, 0 0 2px 0 ${SHADOW_COLOR}, 0 0 1px 0 ${SHADOW_COLOR}`,
display: 'flex',
elevation: 1,
flexDirection: 'column',
gap: 8,
justifyContent: 'center',
padding: 16,
shadowColor: SHADOW_COLOR,
shadowOffset: { width: 0, height: 1 },
shadowOpacity: 0.9,
shadowRadius: 2,
width: '100%',
},
title: {
fontSize: 16,
fontWeight: '700',
lineHeight: 24,
},
});