Ok so I have some basic css experience but I am simply trying to adjust the size of the .song-name element and I know I am probably doing something very dumb thats making it not work, but I need some help.
I see in the dev tools that the font size of the song name element is:
font-size: calc(var(–ui-size) * 14vmin);
I have tried adding both:
.song-name {
font-size: calc(var(–ui-size) * 8vmin);
}
and
.perfomance .song-name {
font-size: calc(var(–ui-size) * 8vmin);
}
I was attempting to keep the responsive resizing of the song name just limit its maximum size, but adding neither of those lines do anything.