tweak height to match art

This commit is contained in:
austinried 2021-07-20 09:02:49 +09:00
parent a1b6aa6732
commit df783a074b

View File

@ -60,7 +60,7 @@ const Category = React.memo<{
const Nothing = () => ( const Nothing = () => (
<View style={styles.nothingHereContent}> <View style={styles.nothingHereContent}>
<NothingHere height={styles.nothingHereContent.height} /> <NothingHere height={160} width={160} />
</View> </View>
) )
@ -123,7 +123,7 @@ const styles = StyleSheet.create({
}, },
nothingHereContent: { nothingHereContent: {
width: '100%', width: '100%',
height: 190, height: 200,
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center', alignItems: 'center',
}, },