mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Make spotify-ish more spotify-ish (#914)
* [Theme] Allow customising album and player parts * [Theme] Allow customizing song lists view * Make spotify-ish more spotify-ish * Fix responsive issues in spotify-ish * Spotify-ish login page * Add back the previous "Spotify-ish" theme as "Green" Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
5128c049d7
commit
ea65da484b
9 changed files with 573 additions and 160 deletions
|
@ -26,18 +26,21 @@ import { sendNotification, baseUrl } from '../utils'
|
|||
import { keyMap } from '../hotkeys'
|
||||
import useCurrentTheme from '../themes/useCurrentTheme'
|
||||
|
||||
const useStyle = makeStyles((theme) => ({
|
||||
audioTitle: {
|
||||
textDecoration: 'none',
|
||||
color: theme.palette.primary.dark,
|
||||
'&.songTitle': {
|
||||
fontWeight: 'bold',
|
||||
const useStyle = makeStyles(
|
||||
(theme) => ({
|
||||
audioTitle: {
|
||||
textDecoration: 'none',
|
||||
color: theme.palette.primary.dark,
|
||||
'&.songTitle': {
|
||||
fontWeight: 'bold',
|
||||
},
|
||||
},
|
||||
},
|
||||
player: {
|
||||
display: (props) => (props.visible ? 'block' : 'none'),
|
||||
},
|
||||
}))
|
||||
player: {
|
||||
display: (props) => (props.visible ? 'block' : 'none'),
|
||||
},
|
||||
}),
|
||||
{ name: 'NDAudioPlayer' }
|
||||
)
|
||||
|
||||
let audioInstance = null
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue