Lyric view scrolls from right to left

Hey @Mattwalker7362514,

To align all lines next to each other instead of vertically, you can use the following custom styles:

.lyrics > div {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: none;
}

.lyrics .line {
  flex-shrink: 0;
}

The only issue currently is that the current line will be aligned all the way to the right, so you won’t be able to read ahead. I’ll release a new beta soon that will align lines in the center instead.

I hope this helps!