mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 21:10:12 +02:00
initial implementation for lyrics
This commit is contained in:
@@ -9,6 +9,7 @@ import {
|
||||
useFullScreenPlayerStore,
|
||||
useFullScreenPlayerStoreActions,
|
||||
} from '/@/renderer/store/full-screen-player.store';
|
||||
import { Lyrics } from '/@/renderer/features/lyrics/lyrics';
|
||||
|
||||
const QueueContainer = styled.div`
|
||||
position: relative;
|
||||
@@ -26,6 +27,12 @@ const QueueContainer = styled.div`
|
||||
}
|
||||
`;
|
||||
|
||||
const LyricsContainer = styled.div`
|
||||
height: 100%;
|
||||
overflow: scroll;
|
||||
text-align: center;
|
||||
`;
|
||||
|
||||
const ActiveTabIndicator = styled(motion.div)`
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
@@ -115,17 +122,9 @@ export const FullScreenPlayerQueue = () => {
|
||||
</Group>
|
||||
</Center>
|
||||
) : activeTab === 'lyrics' ? (
|
||||
<Center>
|
||||
<Group>
|
||||
<RiInformationFill size="2rem" />
|
||||
<TextTitle
|
||||
order={3}
|
||||
weight={700}
|
||||
>
|
||||
COMING SOON
|
||||
</TextTitle>
|
||||
</Group>
|
||||
</Center>
|
||||
<LyricsContainer>
|
||||
<Lyrics />
|
||||
</LyricsContainer>
|
||||
) : null}
|
||||
</Stack>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user