Skip to content

Commit

Permalink
Merge pull request #181 from Sphereon-Opensource/fix/MWALL-691
Browse files Browse the repository at this point in the history
fix/MWALL-691
  • Loading branch information
nklomp authored Mar 15, 2024
2 parents 8ddb9aa + e6128c8 commit 734eae7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/screens/SSICredentialDetailsScreen/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ const SSICredentialDetailsScreen: FC<Props> = (props: Props): JSX.Element => {
// TODO move styling to styled components (currently there is an issue where this styling prop is not being set correctly)
style={{
height: 42,
minWidth: 160.5,
...(primaryAction && {width: '100%'}),
minWidth: 160,
...(!primaryAction && {width: '100%'}),
}}
/>
)}
Expand All @@ -121,8 +121,8 @@ const SSICredentialDetailsScreen: FC<Props> = (props: Props): JSX.Element => {
// TODO move styling to styled components (currently there is an issue where this styling prop is not being set correctly)
style={{
height: 42,
minWidth: 160.5,
...(secondaryAction && {width: '100%'}),
minWidth: 160,
...(!secondaryAction && {width: '100%'}),
}}
/>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ export const SSICredentialDetailsScreenButtonContainer = styled.View`
export const SSICredentialDetailsScreenButtonContentContainer = styled(SSIFlexDirectionRowViewStyled)`
margin: auto auto;
justify-content: space-between;
padding: 0 24px;
`;

0 comments on commit 734eae7

Please sign in to comment.