How can I prevent the first column from wrapping to the second row? The second column has text truncation applied to it. What changes should I make to ensure the first column expands and never wraps?
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.css" rel="stylesheet"/>
<div class="card-header text-center d-flex justify-content-center" style="width:350px">
<div class="mr-1 flex-nowrap" data-bind="html: TimeFormatted">
9:05 AM CDT
</div>
<div class="d-flex text-truncate">
@
<span class="text-truncate mx-1" data-bind="text: VenueName">
ACA dsf asdf sdsadf d fsd fsd fsd fsa
</span>
(<span data-bind="text: CourtName">East</span>)
</div>
</div>