Files
super-app/App/Container/Navi-Insurance/screen/quote-offer-screen/error-screen/QuoteOfferErrorScreenStyle.ts
2024-03-27 15:06:03 +00:00

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",
},
});