56 lines
1.0 KiB
TypeScript
56 lines
1.0 KiB
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: "space-between",
|
|
backgroundColor: "white",
|
|
},
|
|
centerContent: {
|
|
justifyContent: "center",
|
|
alignItems: "center"
|
|
},
|
|
headerBorder: {
|
|
width: "100%",
|
|
height: 1,
|
|
backgroundColor: "#F0F0F0"
|
|
},
|
|
centerIcon: {
|
|
width: 225,
|
|
height: 225
|
|
},
|
|
title: {
|
|
fontSize: 16,
|
|
lineHeight: 22,
|
|
fontFamily: "tt_medium",
|
|
color: "#191919",
|
|
textAlign: "center",
|
|
marginTop: 16,
|
|
marginHorizontal: 20
|
|
},
|
|
subtitle: {
|
|
fontSize: 14,
|
|
lineHeight: 22,
|
|
fontFamily: "tt_regular",
|
|
color: "#4D4D4D",
|
|
textAlign: "center",
|
|
marginTop: 16,
|
|
marginHorizontal: 20
|
|
},
|
|
footerButton: {
|
|
padding: 16,
|
|
marginHorizontal: 16,
|
|
marginVertical: 16,
|
|
backgroundColor: "#1F002A",
|
|
borderRadius: 4,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
buttonText: {
|
|
color: "white",
|
|
fontSize: 14,
|
|
lineHeight: 22,
|
|
fontFamily: "tt_medium",
|
|
},
|
|
});
|