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