mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 07:24:56 -06:00
Auto stash before merge of "master" and "origin/master"
Minor styling changes
This commit is contained in:
parent
03158e3c44
commit
31ce678905
3 changed files with 6 additions and 3 deletions
|
|
@ -17,7 +17,10 @@ export const Thumbnail = ({ thumb }: { thumb: ?string }) => (
|
|||
width: theme.itemTile.thumbnailSize,
|
||||
borderRadius: Math.round(theme.itemTile.thumbnailSize / 2),
|
||||
backgroundColor: theme.itemTile.thumbnailColor,
|
||||
margin: 10,
|
||||
marginLeft: 15,
|
||||
marginRight: 15,
|
||||
marginTop: 5,
|
||||
marginBottom: 5,
|
||||
}}
|
||||
>
|
||||
{!!thumb && (
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ export const TextButton = ({ text, onPress, style = {} }: { text: string, onPres
|
|||
return (
|
||||
<TouchableOpacity onPress={onPress}>
|
||||
<View style={{ flexShrink: 0, ...style }}>
|
||||
<Text style={{ color: theme.palette.accentColor, padding: 12, fontSize: 17 }}>{text}</Text>
|
||||
<Text style={{ color: theme.palette.accentColor, padding: 12, fontSize: 16 }}>{text}</Text>
|
||||
</View>
|
||||
</TouchableOpacity>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ export default {
|
|||
},
|
||||
itemPlaceStyle: {
|
||||
color: COLOR.grey700,
|
||||
paddingTop: 3,
|
||||
paddingTop: 1,
|
||||
},
|
||||
availableCountStyle: {
|
||||
fontSize: 25,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue