Skip to content

Commit

Permalink
main into branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Airmet authored and Isaac Airmet committed Aug 29, 2023
2 parents 1fe4c1d + 7175555 commit d1d0024
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/lib/credentialDisplay/openBadgeCredential.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,10 @@ function OpenBadgeCredentialCard({ rawCredentialRecord, onPressIssuer }: Credent
</View>
</View>
</View>
<CardDetail label="Issuance Date" value={formattedIssuanceDate} />
<CardDetail label="Expiration Date" value={formattedExpirationDate} />
<View style={styles.dateStyles}>
<CardDetail label="Issuance Date" value={formattedIssuanceDate} />
<CardDetail label="Expiration Date" value={formattedExpirationDate} />
</View>
<CardDetail label="Achievement Type" value={achievementType} />
<CardDetail label="Subject Name" value={subjectName} />
<CardDetail label="Number of Credits" value={numberOfCredits} />
Expand Down
3 changes: 3 additions & 0 deletions app/lib/credentialDisplay/shared/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,8 @@ export default createDynamicStyleSheet(({ theme, mixins }) => ({
},
imageBackground: {
backgroundColor: theme.color.foregroundPrimary,
},
dateStyles: {
flexDirection: 'row',
}
}));

0 comments on commit d1d0024

Please sign in to comment.