parent
8ef752e1f4
commit
be19b6f5c9
After Width: | Height: | Size: 14 KiB |
@ -0,0 +1,43 @@
|
||||
import { StyleSheet } from "react-native";
|
||||
|
||||
const coinSkinGap = 10;
|
||||
const infoGap = 20;
|
||||
|
||||
export default StyleSheet.create({
|
||||
coinSkinView: {
|
||||
flexDirection:'row',
|
||||
},
|
||||
coinView: {
|
||||
width: '50%',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
},
|
||||
skinView: {
|
||||
width: '50%',
|
||||
},
|
||||
coin: {
|
||||
width: 75,
|
||||
height: 75,
|
||||
marginVertical: (coinSkinGap/2),
|
||||
},
|
||||
coinText: {
|
||||
fontSize: 16,
|
||||
lineHeight: 21,
|
||||
fontWeight: 'bold',
|
||||
letterSpacing: 0.25,
|
||||
color: 'white',
|
||||
marginVertical: (coinSkinGap/2),
|
||||
},
|
||||
infoView: {
|
||||
marginLeft: '5%',
|
||||
marginTop: '5%',
|
||||
},
|
||||
infoText: {
|
||||
fontSize: 16,
|
||||
lineHeight: 21,
|
||||
fontWeight: 'bold',
|
||||
letterSpacing: 0.25,
|
||||
color: 'white',
|
||||
marginVertical: (infoGap/2),
|
||||
}
|
||||
});
|
Loading…
Reference in new issue