mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-15 05:44:26 +02:00
21 lines
358 B
TypeScript
21 lines
358 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
mainContainer: {
|
|
backgroundColor: "#181c28",
|
|
borderRadius: 10,
|
|
marginVertical: 5,
|
|
padding: 5,
|
|
flexDirection: "row"
|
|
},
|
|
propertyText: {
|
|
color: "white",
|
|
fontSize: 16,
|
|
},
|
|
propertyTitle: {
|
|
fontWeight: "bold",
|
|
},
|
|
link: {
|
|
color: "#575DB5",
|
|
},
|
|
});
|