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

Commit

Permalink
[C-2924] Fix ArtistRecommendation description alignment (#4033)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers authored Sep 6, 2023
1 parent 07bcc8b commit 5e8ce0d
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit 5e8ce0d

Please sign in to comment.