Skip to content

Commit e72596a

Browse files
committed
Fix cue list sizing and text wrapping
Apply a min-width to the cue list panel to ensure text wraps instead of expanding the width of the flex container.
1 parent e42a5e2 commit e72596a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/CueNoteMain.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const CueNoteMain = (props: CueNoteMainProps) => {
165165
</div>
166166
</div>
167167
</div>
168-
<div className='basis-1/3 grow-0 shrink-0 flex gap-2 relative'>
168+
<div className='basis-1/3 grow-0 shrink-0 flex gap-2 relative min-w-0'>
169169
<CueList
170170
cues={props.cues}
171171
activeCueNumber={props.activeCue?.targetNumber}

0 commit comments

Comments
 (0)