mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-12 10:55:59 +02:00
39 lines
633 B
TypeScript
39 lines
633 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
mainContainer: {
|
|
backgroundColor: "#181c28",
|
|
borderRadius: 10,
|
|
marginVertical: 5,
|
|
marginHorizontal: 10,
|
|
},
|
|
titleContainer: {
|
|
padding: 10,
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
},
|
|
urlCode: {
|
|
textAlignVertical: "center",
|
|
color: "white",
|
|
fontSize: 16,
|
|
width: "85%",
|
|
},
|
|
link: {
|
|
color: "#575DB5",
|
|
},
|
|
divider: {
|
|
height: 3,
|
|
width: "100%",
|
|
backgroundColor: "#222c47",
|
|
},
|
|
keysContainer: {
|
|
padding: 10,
|
|
},
|
|
key: {
|
|
color: "#6c7a8d",
|
|
fontSize: 14,
|
|
},
|
|
keyName: {
|
|
fontWeight: "bold",
|
|
},
|
|
});
|