19 lines
403 B
Plaintext
19 lines
403 B
Plaintext
@using LayoutParts
|
|
|
|
@if (IsOpen) {
|
|
<div class="fixed flex flex-col items-center inset-0 bg-gray-800 bg-opacity-75 z-50 overflow-y-auto lg:py-8">
|
|
<Nejcraft.Shared.Parts.LayoutParts.Third>
|
|
@ChildContent
|
|
</Nejcraft.Shared.Parts.LayoutParts.Third>
|
|
</div>
|
|
}
|
|
|
|
@code {
|
|
[Parameter]
|
|
public Boolean IsOpen { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; } = default!;
|
|
|
|
}
|