49 lines
948 B
TypeScript
49 lines
948 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: "space-between",
|
|
backgroundColor: "white",
|
|
},
|
|
centerContent: {
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
centerIcon: {
|
|
width: 125,
|
|
height: 125,
|
|
},
|
|
errorTitle: {
|
|
fontSize: 16,
|
|
lineHeight: 22,
|
|
fontFamily: "tt_semi_bold",
|
|
color: "#191919",
|
|
textAlign: "center",
|
|
marginTop: 32,
|
|
},
|
|
errorSubtitle: {
|
|
fontSize: 14,
|
|
lineHeight: 22,
|
|
fontFamily: "tt_regular",
|
|
color: "#6B6B6B",
|
|
textAlign: "center",
|
|
marginTop: 16,
|
|
},
|
|
retryButton: {
|
|
padding: 16,
|
|
marginHorizontal: 16,
|
|
marginVertical: 32,
|
|
backgroundColor: "#1F002A",
|
|
borderRadius: 4,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
buttonText: {
|
|
color: "white",
|
|
fontSize: 14,
|
|
lineHeight: 22,
|
|
fontFamily: "tt_semi_bold",
|
|
},
|
|
});
|