2020-03-30 19:20:50 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
serverName: {
|
|
|
|
...sharedStyles.textSemibold,
|
|
|
|
fontSize: 16,
|
|
|
|
marginBottom: 4
|
|
|
|
},
|
|
|
|
serverUrl: {
|
|
|
|
...sharedStyles.textRegular,
|
|
|
|
fontSize: 14,
|
|
|
|
marginBottom: 24
|
|
|
|
},
|
|
|
|
registrationText: {
|
|
|
|
fontSize: 14,
|
2020-11-30 21:47:05 +00:00
|
|
|
...sharedStyles.textRegular,
|
|
|
|
...sharedStyles.textAlignCenter
|
2020-03-30 19:20:50 +00:00
|
|
|
},
|
|
|
|
alignItemsCenter: {
|
|
|
|
alignItems: 'center'
|
|
|
|
}
|
|
|
|
});
|