Skip to content

Commit

Permalink
fix flex
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerGery committed Jan 23, 2024
1 parent 4b6b38c commit cf64a87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/client/Locomotion/src/Components/CardRow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const margin = `margin-${Start()}`;
const TextContainer = styled(View)`
justify-content: center;
${margin}: 16px;
width: ${({ noSvg } : { noSvg: boolean}) => (noSvg ? '95%' : '80%')};
width: 80%;
`;

const Type = styled(Text)`
Expand Down Expand Up @@ -195,7 +195,7 @@ const CardRow = (paymentMethod: any) => {
}

</ImageContainer>
<TextContainer noSvg={paymentMethod.noSvg}>
<TextContainer>
{paymentMethod.addNew
? (
<>
Expand Down

0 comments on commit cf64a87

Please sign in to comment.