Skip to content

Commit

Permalink
fix: playlist display bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nini22P committed Feb 5, 2024
1 parent 5c9ae29 commit fd451ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pages/Playlist/Playlist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ const Playlist = () => {
sx={{
padding: '3rem 1rem 1rem 1rem',
background: `linear-gradient(0deg, ${theme.palette.background.default}ff, ${theme.palette.background.default}99,${theme.palette.background.default}00)`,
zIndex: 1,
gap: '0.25rem',
backdropFilter: 'blur(2px)',
}}
Expand All @@ -105,7 +104,7 @@ const Playlist = () => {
</Grid>
</Grid>

<Box sx={{ position: 'absolute', height: '100%', width: '100%' }}>
<Box sx={{ position: 'absolute', height: '100%', width: '100%', zIndex: -1 }}>
{
metaDataList[0] && metaDataList[0].cover && 'data' in metaDataList[0].cover[0].data &&
<img
Expand Down

0 comments on commit fd451ac

Please sign in to comment.