-
-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathstyles.ts
More file actions
44 lines (43 loc) · 811 Bytes
/
styles.ts
File metadata and controls
44 lines (43 loc) · 811 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
39
40
41
42
43
44
import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
container: {
paddingHorizontal: 16,
},
content: {
paddingTop: 50,
},
header: {
color: "black",
paddingRight: 12,
},
switchContainer: {
flexDirection: "row",
justifyContent: "space-between",
alignItems: "center",
margin: 16,
},
snapToOffsetsAbsoluteContainer: {
width: "100%",
position: "absolute",
},
snapToOffsetsInnerContainer: {
flexDirection: "row",
alignItems: "center",
gap: 12,
},
snapToOffsetsLine: {
height: 2,
flex: 1,
backgroundColor: "black",
},
input: {
width: "100%",
borderWidth: 2,
borderColor: "black",
borderRadius: 8,
paddingHorizontal: 12,
},
bottomSheetContent: {
flex: 1,
},
});