You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
661 B
32 lines
661 B
import { StyleSheet } from "react-native";
|
|
|
|
export default StyleSheet.create({
|
|
textID: {
|
|
fontSize: 16,
|
|
lineHeight: 21,
|
|
letterSpacing: 0.25,
|
|
color: 'white',
|
|
textAlign: 'right',
|
|
},
|
|
text: {
|
|
fontSize: 16,
|
|
lineHeight: 21,
|
|
letterSpacing: 0.25,
|
|
color: 'white',
|
|
},
|
|
title: {
|
|
fontSize: 20,
|
|
lineHeight: 21,
|
|
fontWeight: 'bold',
|
|
letterSpacing: 0.25,
|
|
color: 'white',
|
|
marginTop: 15,
|
|
},
|
|
infoView: {
|
|
borderColor: '#2D2C33',
|
|
borderWidth: 2,
|
|
width: '90%',
|
|
margin: 15,
|
|
padding: 15,
|
|
},
|
|
}); |