Limit Share player to 768 px (#2164)

Signed-off-by: Kendall Garner <17521368+kgarner7@users.noreply.github.com>
This commit is contained in:
Kendall Garner 2023-02-11 17:38:35 +00:00 committed by Joe Stump
parent 7dd8847fd7
commit 694842b487
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -10,6 +10,10 @@ const useStyle = makeStyles({
pointerEvents: (props) => props.single && 'none',
opacity: (props) => props.single && 0.65,
},
'& .react-jinke-music-player-mobile': {
maxWidth: 768,
margin: 'auto',
},
},
})