I am trying to create a fixed text at the top of a scrollable MudTab. As I scroll down, I want the text to remain visible. Here is an example of what I have done:
<MudTabs Position="Position.Top" PanelClass="pt-2" Style="height:320px; overflow-y: scroll">
<MudTabPanel Text="Item One">
<MudText>
[Content for Item One]
</MudText>
<MudText>
[Additional Content for Item One]
</MudText>
</MudTabPanel>
<MudTabPanel Text="Item Two">
<MudText>Content Two</MudText>
</MudTabPanel>
<MudTabPanel Text="Item Three">
<MudText>Content Three</MudText>
</MudTabPanel>
</MudTabs>