mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-11 18:35:58 +02:00
19 lines
381 B
TypeScript
19 lines
381 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
noInternetText: {
|
|
color: "#cdd6f4",
|
|
fontSize: 30,
|
|
fontWeight: "bold",
|
|
margin: "auto",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
noInternetContainer: {
|
|
flex: 1,
|
|
display: "flex",
|
|
backgroundColor: "#0c101c",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
});
|