Fix margin/padding

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-21 16:50:10 +03:00
parent 3c303e0304
commit a4726eb89a
3 changed files with 3 additions and 3 deletions

View File

@@ -120,7 +120,7 @@ const MemeTagSearchModal = ({
<TagChip <TagChip
tag={tag} tag={tag}
style={{ style={{
marginRight: fixed.horizontalScale(8), marginRight: fixed.horizontalScale(5),
}} }}
onPress={() => handleTagPress(tag)} onPress={() => handleTagPress(tag)}
active={memeTags.has(tag.id.toHexString())} active={memeTags.has(tag.id.toHexString())}

View File

@@ -39,7 +39,7 @@ const MemeTagSelector = ({
tag={tag} tag={tag}
onPress={() => handleTagPress(tag)} onPress={() => handleTagPress(tag)}
style={{ style={{
marginRight: fixed.horizontalScale(4), marginRight: fixed.horizontalScale(5),
}} }}
/> />
)} )}

View File

@@ -62,7 +62,7 @@ const tagsStyles = StyleSheet.create({
marginVertical: 10, marginVertical: 10,
}, },
flashList: { flashList: {
paddingTop: 125, paddingTop: 122,
paddingBottom: 25, paddingBottom: 25,
}, },
}); });