Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Bonus Pagamenti Digitali): [#177368806] Wrong align for the bottom-left text of the privative & cobadge cards #2910

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ts/features/wallet/cobadge/component/BaseCoBadgeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const BaseCoBadgeCard: React.FunctionComponent<Props> = (props: Props) => {
</>
}
bottomLeftCorner={
<View>
<>
{props.caption && (
<>
<View style={{ flexDirection: "row" }}>
Expand All @@ -133,7 +133,7 @@ const BaseCoBadgeCard: React.FunctionComponent<Props> = (props: Props) => {
<View spacer small />
</>
)}
</View>
</>
}
bottomRightCorner={
<View style={{ justifyContent: "flex-end", flexDirection: "column" }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const BasePrivativeCard: React.FunctionComponent<Props> = (props: Props) => {
</>
}
bottomLeftCorner={
<View>
<>
{props.caption && (
<>
<View style={{ flexDirection: "row" }}>
Expand All @@ -137,7 +137,7 @@ const BasePrivativeCard: React.FunctionComponent<Props> = (props: Props) => {
<View spacer small />
</>
)}
</View>
</>
}
bottomRightCorner={loyaltyLogo}
/>
Expand Down