2024-07-14 19:46:17 +00:00
|
|
|
@inherits MSGComponentBase
|
2024-06-30 13:26:28 +00:00
|
|
|
|
2024-11-02 21:53:02 +00:00
|
|
|
<div class="@this.Classes" style="@this.Styles">
|
|
|
|
@if (this.HeaderContent is not null)
|
|
|
|
{
|
|
|
|
<div>
|
|
|
|
@this.HeaderContent
|
|
|
|
</div>
|
|
|
|
}
|
2025-01-21 12:40:47 +00:00
|
|
|
<div class="flex-auto overflow-auto mb-3">
|
2024-06-01 18:32:30 +00:00
|
|
|
@this.ChildContent
|
2024-08-23 08:32:27 +00:00
|
|
|
|
2025-01-21 12:40:47 +00:00
|
|
|
<div style="max-height: 0.1em;" @ref="@this.AnchorAfterChildContent">
|
2024-08-23 08:32:27 +00:00
|
|
|
|
|
|
|
</div>
|
2024-06-01 18:32:30 +00:00
|
|
|
</div>
|
2024-08-23 11:44:27 +00:00
|
|
|
|
|
|
|
@if (this.FooterContent is not null)
|
|
|
|
{
|
2025-01-21 12:40:47 +00:00
|
|
|
<MudPaper Class="pa-3 mb-3 border-solid border rounded-lg">
|
2024-08-23 11:44:27 +00:00
|
|
|
@this.FooterContent
|
|
|
|
</MudPaper>
|
|
|
|
}
|
2024-06-01 18:32:30 +00:00
|
|
|
</div>
|