Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

[C-2924] Fix ArtistRecommendation description alignment #4033

Merged
merged 1 commit into from
Sep 6, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ const useStyles = makeStyles(({ spacing, palette, typography }) => ({
header: {
flexDirection: 'row'
},
description: {
flexShrink: 1
},
dismissButton: {
marginRight: spacing(2)
},
Expand Down Expand Up @@ -147,7 +150,7 @@ export const ArtistRecommendations = (props: ArtistRecommendationsProps) => {
fill={styles.dismissIcon.fill}
onPress={onClose}
/>
<View pointerEvents='none'>
<View pointerEvents='none' style={styles.description}>
<Text variant='body1'>
{messages.description} {name}
</Text>
Expand Down