Skip to content

Commit

Permalink
fix: include width units for similar album cover image
Browse files Browse the repository at this point in the history
  • Loading branch information
leinelissen committed Apr 24, 2023
1 parent 4267b8a commit ed78e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/Music/stacks/Album.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ type Route = RouteProp<StackParams, 'Album'>;
const Screen = Dimensions.get('screen');

const Cover = styled(AlbumImage)`
height: ${Screen.width / 2.8};
width: ${Screen.width / 2.8};
height: ${Screen.width / 2.8}px;
width: ${Screen.width / 2.8}px;
border-radius: 12px;
margin-bottom: 8px;
`;
Expand Down

0 comments on commit ed78e4a

Please sign in to comment.