kia-ml
Version:
Kia
70 lines (69 loc) • 1.5 kB
JavaScript
import { color, spacing } from "../../theme";
export const baseView = {
flexDirection: "row",
backgroundColor: color.line,
paddingVertical: spacing[2],
paddingHorizontal: spacing[2],
borderRadius: 4,
justifyContent: "center",
alignItems: "center" // boxShadow: "-1px -3px 5px 0px"
};
export const componentView = {
flex: 1,
backgroundColor: color.palette.offWhite,
paddingTop: spacing[3],
paddingBottom: spacing[3],
paddingLeft: spacing[5],
paddingRight: spacing[5],
marginTop: spacing[2],
marginBottom: spacing[2],
shadowOffset: {
width: 1,
height: 3
},
shadowOpacity: 0.9,
shadowColor: color.dim,
shadowRadius: 3
};
export const titleText = {
flex: 1,
fontWeight: "bold",
fontSize: 16
};
export const listItemView = {
flexDirection: "row",
marginTop: spacing[2]
};
export const iconView = {
flexDirection: "row",
justifyContent: "center",
alignItems: "center"
};
export const iconLabel = {
fontSize: 10,
color: "#444444",
marginLeft: spacing[2]
};
export const labelView = {
marginTop: spacing[2]
};
export const timeAgoView = {
flexDirection: "row",
alignItems: "center",
justifyContent: "center"
};
export const timeAgoText = {
fontSize: 10,
color: "#666666",
marginLeft: spacing[2]
};
export const baseText = {
paddingHorizontal: spacing[3]
};
export const labelText = {
marginRight: spacing[2],
color: "#2c2c2c",
fontSize: 12,
fontWeight: "bold"
};
//# sourceMappingURL=request-list.style.js.map