32 lines
665 B
JavaScript
32 lines
665 B
JavaScript
import { StyleSheet } from "react-native";
|
|
|
|
const cardBackgroundColor = "gainsboro";
|
|
|
|
export default StyleSheet.create({
|
|
cardBackground: {
|
|
padding: 5,
|
|
backgroundColor: cardBackgroundColor,
|
|
display: "flex",
|
|
flex: 1,
|
|
},
|
|
buttonBasicOutlined: {
|
|
marginVertical: 4,
|
|
marginHorizontal: 16,
|
|
justifyContent: "center",
|
|
alignContent: "center",
|
|
borderColor: "gray",
|
|
borderWidth: 0.8,
|
|
borderRadius: 4,
|
|
},
|
|
buttonFatOutlined: {
|
|
marginVertical: 4,
|
|
marginHorizontal: 16,
|
|
height: 48,
|
|
justifyContent: "center",
|
|
alignContent: "center",
|
|
borderColor: "gray",
|
|
borderWidth: 0.8,
|
|
borderRadius: 4,
|
|
}
|
|
});
|