Co-authored-by: Prajjaval Verma <prajjaval.verma@navi.com> Co-authored-by: Balrambhai Sharma <sharma.balrambhai@navi.com>
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
import { StyleSheet } from "react-native";
|
|
import Colors from "../../../assets/colors/colors";
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
backgroundColor: Colors.white,
|
|
margin: 20,
|
|
borderRadius: 4,
|
|
borderColor: Colors.lightGray,
|
|
borderWidth: 1,
|
|
shadowColor: Colors.lightSteelBlue,
|
|
elevation: 6,
|
|
},
|
|
sectionHeader: {
|
|
backgroundColor: Colors.ghostWhite,
|
|
padding: 16,
|
|
borderTopLeftRadius: 4,
|
|
borderTopRightRadius: 4,
|
|
alignItems: "flex-start",
|
|
justifyContent: "flex-start",
|
|
},
|
|
listContainer: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
paddingTop: 16,
|
|
paddingBottom: 20,
|
|
},
|
|
rowContainer: {
|
|
flexDirection: "row",
|
|
justifyContent: "flex-start",
|
|
alignItems: "center",
|
|
gap: 0,
|
|
width: "80%",
|
|
},
|
|
titleContainer: {
|
|
flexDirection: "column",
|
|
alignItems: "flex-start",
|
|
},
|
|
separator: {
|
|
height: 1,
|
|
width: "100%",
|
|
backgroundColor: Colors.lightGray,
|
|
},
|
|
expandText: {
|
|
alignItems: "flex-start",
|
|
padding: 16,
|
|
},
|
|
});
|
|
|
|
export default styles;
|