Scrollable aside
Hello, probably someone ask this already but i just couldn't find it, so i want the lyric box (on the right side) become scrollable instead of expanding to the bottom, so that the height is following the left box content
3 Replies
this explains the issue better than i can https://discord.com/channels/436251713830125568/1215661399594766448/1215667555671220294
if you wrap the lyrics in another div, and give that wrapper a position: relative. then you can make .lyrics position absolute, with inset: 0 to match the available height and have overflow: auto.
simple example https://codepen.io/MarkBoots/pen/jOoMGpG
thank you, solved