mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Limit share size while handling theme properly (#2171)
* limit player to 768 px Signed-off-by: Kendall Garner <17521368+kgarner7@users.noreply.github.com> * fix size limitation --------- Signed-off-by: Kendall Garner <17521368+kgarner7@users.noreply.github.com>
This commit is contained in:
parent
b129cae0d8
commit
8b93962fad
1 changed files with 8 additions and 3 deletions
|
@ -10,9 +10,14 @@ const useStyle = makeStyles({
|
|||
pointerEvents: (props) => props.single && 'none',
|
||||
opacity: (props) => props.single && 0.65,
|
||||
},
|
||||
'& .react-jinke-music-player-mobile': {
|
||||
maxWidth: 768,
|
||||
margin: 'auto',
|
||||
'@media (min-width: 768px)': {
|
||||
'& .react-jinke-music-player-mobile > div': {
|
||||
width: 768,
|
||||
margin: 'auto',
|
||||
},
|
||||
'& .react-jinke-music-player-mobile-cover': {
|
||||
width: 'auto !important',
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue