Are you using the default Blazor template? It seems so. If yes try opening Shared/MainLayout.razor.css and changing
main {
flex: 1;
}
to
main {
flex: 1;
width: 0;
}
Seems to be this issue.
Are you using the default Blazor template? It seems so. If yes try opening Shared/MainLayout.razor.css and changing
main {
flex: 1;
}
to
main {
flex: 1;
width: 0;
}
Seems to be this issue.