I have a MudBlazortable and it keeps doing this when resizing the window:
To:
My code:
<MudCard Elevation="0"><MudCardContent><MudTable Style="background-color: #9d1213" Elevation="22" Class="py-8 px-10" Items="@rewards" Virtualize="true" Hover="true" SortLabel="Sort By"><HeaderContent><MudTh Class="text-white"><MudTableSortLabel SortBy="new Func<Reward, object>(x=>x.Name)">Reward</MudTableSortLabel></MudTh><MudTh Class="text-white"><MudTableSortLabel Enabled="@enabled" SortBy="new Func<Reward, object>(x=>x.HasBeenUsed)">Used ?</MudTableSortLabel></MudTh><MudTh Class="text-white"><MudTableSortLabel InitialDirection="SortDirection.Ascending" SortBy="new Func<Reward, object>(x=>x.ExpiresOn)">Expires on</MudTableSortLabel></MudTh></HeaderContent><RowTemplate><MudTd Class="text-white" DataLabel="Name">@context.Name</MudTd><MudTd Class="text-white" DataLabel="HasBeenUsed">@(context.HasBeenUsed == true ? "Yes" : "No")</MudTd><MudTd Class="text-white" DataLabel="ExpiresOn"> @context.ExpiresOn.ToString("d", CultureInfo.CreateSpecificCulture("en-US"))</MudTd></RowTemplate><PagerContent><MudTablePager Class="text-white" PageSizeOptions="new int[] { 10, 25, 50, 100 }" /></PagerContent></MudTable></MudCardContent></MudCard>I don't know enough of CSS or else to know how to not make it do it and I've been trying so many things from the MudBlazor website to CSS changes but it doesn't do anything

