diff --git a/front/components/songCard.tsx b/front/components/songCard.tsx index c38f33b..b332c62 100644 --- a/front/components/songCard.tsx +++ b/front/components/songCard.tsx @@ -14,7 +14,7 @@ const SongCard = ( const cardFormat = { margin: 10, padding: 5, - width: 300, + width: 200, backgroundColor: '#C5C5C5' } @@ -23,16 +23,25 @@ const SongCard = ( } const songTitleStyle = { - fontweight: '900', + fontSize: 17, color: 'black' } + const coverImageStyle = { + height: 150, + width: 190 + } + return ( - + - {songTitle} - {artistName} + + {songTitle} + + + {artistName} + );