AI-Studio/app/MindWork AI Studio/Components/InnerScrolling.razor

18 lines
431 B
Plaintext
Raw Normal View History

2024-07-14 19:46:17 +00:00
@inherits MSGComponentBase
2024-06-30 13:26:28 +00:00
<div class="d-flex flex-column" style="@this.Height">
<div class="flex-auto overflow-auto">
@this.ChildContent
<div @ref="@this.AnchorAfterChildContent">
&nbsp;
</div>
</div>
@if (this.FooterContent is not null)
{
<MudPaper Class="pa-3 border-solid border rounded-lg">
@this.FooterContent
</MudPaper>
}
</div>