From ed78e4ab491733e33f562fa7eff0482c542e68ae Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Mon, 24 Apr 2023 23:38:36 +0200 Subject: [PATCH] fix: include width units for similar album cover image --- src/screens/Music/stacks/Album.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/Music/stacks/Album.tsx b/src/screens/Music/stacks/Album.tsx index 1c9496a6..3f1752c8 100644 --- a/src/screens/Music/stacks/Album.tsx +++ b/src/screens/Music/stacks/Album.tsx @@ -19,8 +19,8 @@ type Route = RouteProp; 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; `;