diff --git a/ui/src/audioplayer/Player.js b/ui/src/audioplayer/Player.js
index 5a5e3f57e..4f984b14d 100644
--- a/ui/src/audioplayer/Player.js
+++ b/ui/src/audioplayer/Player.js
@@ -35,6 +35,9 @@ const useStyle = makeStyles(
'&.songTitle': {
fontWeight: 'bold',
},
+ '&.songInfo': {
+ display: 'block',
+ },
},
qualityInfo: {
marginTop: '-4px',
@@ -48,13 +51,17 @@ const useStyle = makeStyles(
},
player: {
display: (props) => (props.visible ? 'block' : 'none'),
- },
- artistAlbum: {
- marginTop: '2px',
+ '& .progress-bar-content': {
+ display: 'flex',
+ flexDirection: 'column',
+ },
'& .play-mode-title': {
'pointer-events': 'none',
},
},
+ artistAlbum: {
+ marginTop: '2px',
+ },
}),
{ name: 'NDAudioPlayer' }
)
@@ -81,14 +88,11 @@ const AudioTitle = React.memo(({ audioInfo, isMobile }) => {
)}
{!isMobile && (
- <>
-
-