Skip to content

Commit

Permalink
Increase feed item size
Browse files Browse the repository at this point in the history
  • Loading branch information
Leapward-Koex committed Aug 18, 2022
1 parent ee24a8b commit d392884
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 47 deletions.
23 changes: 0 additions & 23 deletions components/SettingsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,6 @@ export const SettingsTab = () => {
};

const styles = StyleSheet.create({
stretch: {
borderTopLeftRadius: 3,
borderBottomLeftRadius: 3,
height: 130,
resizeMode: 'cover',
},
centeredView: {
flex: 1,
justifyContent: 'center',
Expand All @@ -143,23 +137,6 @@ export const SettingsTab = () => {
maxHeight: '100%',
overflow: 'scroll',
},
modalView: {
maxHeight: height - 50,
width: '90%',
margin: 20,
backgroundColor: 'white',
borderRadius: 5,
padding: 35,
alignItems: 'center',
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 4,
elevation: 5,
},
touchableStyle: {
height: 60,
backgroundColor:
Expand Down
27 changes: 3 additions & 24 deletions components/releasePageComponents/ReleaseShow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const ReleaseShow = observer(({ showInfo, index }: releaseShowProps) => {
stretch: {
borderTopLeftRadius: 3,
borderBottomLeftRadius: 3,
height: 130,
height: 150,
resizeMode: 'cover',
},
centeredView: {
Expand All @@ -113,23 +113,6 @@ export const ReleaseShow = observer(({ showInfo, index }: releaseShowProps) => {
maxHeight: '100%',
overflow: 'scroll',
},
modalView: {
maxHeight: height - 50,
width: '90%',
margin: 20,
backgroundColor: 'white',
borderRadius: 5,
padding: 35,
alignItems: 'center',
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 4,
elevation: 5,
},
button: {
borderRadius: 20,
padding: 10,
Expand All @@ -141,16 +124,12 @@ export const ReleaseShow = observer(({ showInfo, index }: releaseShowProps) => {
buttonClose: {
backgroundColor: '#2196F3',
},
modalText: {
marginBottom: 20,
fontSize: 20,
},
cardStyle: {
marginLeft: 5,
marginTop: 10,
marginBottom: 10,
marginRight: 5,
height: 130,
height: 150,
backgroundColor:
Appearance.getColorScheme() !== 'light'
? colors.subsPleaseDark1
Expand Down Expand Up @@ -391,7 +370,7 @@ export const ReleaseShow = observer(({ showInfo, index }: releaseShowProps) => {
navigation.navigate('release-info', { showInfo })
}
>
<View style={{ flexDirection: 'row', height: 130 }}>
<View style={{ flexDirection: 'row', height: 150 }}>
<View style={{ flex: 0.3 }}>
<View
style={{
Expand Down

0 comments on commit d392884

Please sign in to comment.