VerseMatch

Match the reference to the phrase
Moves 0
Matches 0
Time 00:00
Best --:--
Ready.
Pack: All
function fitTextToCard(inner, minPx, maxPx){ // Shrink-to-fit so the full verse stays inside the card without scrolling let size = maxPx; inner.style.fontSize = size + "px"; inner.style.lineHeight = "1.32"; for(let i=0;i<24;i++){ if(inner.scrollHeight <= inner.clientHeight + 1) break; size = Math.max(minPx, size - 0.5); inner.style.fontSize = size + "px"; if(size <= minPx) break; } }