Skip to content

Commit

Permalink
[fix] misc styling and functionality fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ronniebeggs committed May 1, 2024
1 parent 92f0e87 commit da9ba90
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { TouchableOpacity } from 'react-native-gesture-handler';
import styles from './styles';
import Fileclaim from '../../../assets/file-claim.svg';
import Arrow from '../../../assets/next.svg';
import globalStyles from '../../styles/global';
import { shawdowStyles } from '../../styles/global';

interface EligibilityCardProps {
mainText: string;
Expand All @@ -21,7 +21,7 @@ export default function EligibleFilingButton({
}: EligibilityCardProps) {
return (
<TouchableOpacity
style={[styles.buttonContainer, globalStyles.shadowBorder]}
style={[styles.buttonContainer, shawdowStyles.shadowBorder]}
onPress={() => {
router.push(route);
}}
Expand Down
5 changes: 0 additions & 5 deletions src/app/(Authentication)/Welcome/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ function WelcomeScreen() {
return (
<SafeArea>
<View style={styles.contentContainer}>
<Image
style={styles.image}
source={require('../../../../assets/inline-logo.jpeg')}
/>

<View>
<Text style={styles.welcomeText}>Welcome to the Impact Fund.</Text>

Expand Down
6 changes: 1 addition & 5 deletions src/app/(Authentication)/Welcome/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,11 @@ export default StyleSheet.create({
},
contentContainer: {
flexDirection: 'column',
justifyContent: 'space-between',
justifyContent: 'flex-end',
height: '84%',
width: '81%',
paddingVertical: 40,
},
image: {
width: 130,
height: 16,
},
textContainer: {
marginTop: 275,
justifyContent: 'center',
Expand Down
3 changes: 3 additions & 0 deletions src/app/(BottomTabNavigation)/AllCases/Updates/[caseUid].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ export default function UpdatesScreen() {
<CaseStatusBar status={caseData.caseStatus} />
</View>
}
ListEmptyComponent={
<Text>There are no updates associated with this case.</Text>
}
/>
</View>
)}
Expand Down

0 comments on commit da9ba90

Please sign in to comment.