mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
28 lines
570 B
CSS
28 lines
570 B
CSS
.play-queue-section {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.lyrics-section {
|
|
position: relative;
|
|
display: flex;
|
|
flex: 0 0 300px;
|
|
flex-direction: column;
|
|
min-height: 200px;
|
|
max-height: 400px;
|
|
overflow: hidden;
|
|
background: var(--theme-colors-background);
|
|
}
|
|
|
|
.lyrics-section :global(.synchronized-lyrics) {
|
|
padding: 2rem 0 4rem !important;
|
|
transform: translateY(0) !important;
|
|
}
|
|
|
|
.lyrics-section :global(.synchronized-lyrics .lyric-line) {
|
|
padding: 0.25rem 0;
|
|
}
|