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 GitHub
parent bb29ad3b12
commit 9e268678f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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',
},
},
})