mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
actually fix the related tab (#1484)
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
.queue-container {
|
.queue-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
@@ -4,5 +4,9 @@ import { usePlayerSong } from '/@/renderer/store';
|
|||||||
export const FullScreenSimilarSongs = () => {
|
export const FullScreenSimilarSongs = () => {
|
||||||
const currentSong = usePlayerSong();
|
const currentSong = usePlayerSong();
|
||||||
|
|
||||||
return currentSong?.id ? <SimilarSongsList fullScreen song={currentSong} /> : null;
|
return currentSong?.id ? (
|
||||||
|
<div style={{ height: '100%', width: '100%' }}>
|
||||||
|
<SimilarSongsList fullScreen song={currentSong} />
|
||||||
|
</div>
|
||||||
|
) : null;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user