Skip to content

Commit

Permalink
fix(text): fix lyrics cinema, user variables (#1087)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkthemer authored Jun 30, 2024
1 parent ea77716 commit 435cbf6
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions text/user.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,18 @@
font-weight: var(--font-weight) !important;
line-height: var(--line-height) !important;
}
.lyrics-lyrics-container * {
.lyrics-lyrics-container *,
.main-nowPlayingView-lyricsContent * {
font-family: var(--font-family);
font-size: var(--font-size-lyrics);
font-weight: var(--font-weight);
line-height: var(--line-height);
}
.main-entityHeader-title h1 {
font-family: "asciid" !important;
font-size: calc(var(--font-size) * var(--font-size-multiplier-header)) !important;
font-family: var(--font-family-header) !important;
font-size: calc(
var(--font-size) * var(--font-size-multiplier-header)
) !important;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
Expand Down Expand Up @@ -534,8 +537,9 @@
}

/* lyrics cinema */
.main-lyricsCinema-lyricsCinemaVisible {
.Root__lyrics-cinema {
border: var(--border-width) var(--border-style) transparent;
overflow: hidden;
}
.main-nowPlayingView-lyricsContent {
-webkit-mask-image: none !important;
Expand Down

0 comments on commit 435cbf6

Please sign in to comment.