Introduces License and About components redesign

This commit is contained in:
mashazyu
2020-03-23 10:48:12 +01:00
committed by Sofiya Tepikin
parent 3f8f6dbbe6
commit 4f30db69f3
6 changed files with 98 additions and 46 deletions
+1
View File
@@ -1,4 +1,5 @@
export default {
greenSuperLight: '#E9F2ED',
grey: '#A5A5A5',
greyLight: '#D2D2D2',
greySuperLight: '#F2F2F2',
+5 -1
View File
@@ -5,7 +5,7 @@ export default {
bottomBorder: {
borderStyle: 'solid',
borderBottomWidth: 2,
borderBottomColor: Colors.greySuperLight,
borderBottomColor: Colors.greyLight,
paddingBottom: Spacing.base
},
centerItems: {
@@ -24,5 +24,9 @@ export default {
backgroundColor: Colors.orange,
borderRadius: 25
},
page: {
backgroundColor: Colors.greenSuperLight,
flex: 1
},
segmentContainer: { marginHorizontal: Spacing.base }
}
+14 -2
View File
@@ -20,6 +20,12 @@ const button = {
textTransform: 'uppercase'
}
const title = {
color: Colors.purple,
marginHorizontal: Spacing.base,
marginVertical: Spacing.large
}
export default {
buttonTextBold: {
fontFamily: fonts.bold,
@@ -33,10 +39,16 @@ export default {
fontFamily: fonts.main,
fontSize: sizes.mainMedium
},
pageTitle: {
alignSelf: 'center',
fontFamily: fonts.bold,
fontWeight: '700',
fontSize: sizes.titleMedium,
...title
},
titleSmall: {
color: Colors.purple,
fontSize: sizes.titleSmall,
marginVertical: Spacing.base
...title
},
underline: { textDecorationLine: 'underline' }
}