mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-15 13:54:51 +02:00
21 lines
No EOL
383 B
TypeScript
21 lines
No EOL
383 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
popupContainerOverlay: {
|
|
position: "absolute",
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
backgroundColor: "rgba(0, 0, 0, 0.5)",
|
|
zIndex: 1,
|
|
},
|
|
popupContainer: {
|
|
maxHeight: 600,
|
|
width: "90%",
|
|
margin: "auto",
|
|
backgroundColor: "#0c101c",
|
|
borderRadius: 15,
|
|
padding: 15,
|
|
},
|
|
}); |