Initial commit

This commit is contained in:
2026-07-03 16:31:37 +07:00
commit 899c7c637d
1939 changed files with 641750 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<div class="@WidthClass @HeightClass position-relative overflow-hidden">
<div class="w-100 h-100 position-absolute top-0 start-0 @OverflowX @OverflowY @Class">
@ChildContent
</div>
</div>
@code{
[Parameter]
public RenderFragment? ChildContent { get; set; }
[Parameter]
public string WidthClass { get; set; } = "w-100";
[Parameter]
public string HeightClass { get; set; } = "h-100";
[Parameter]
public string OverflowX { get; set; } = "overflow-x-hidden";
[Parameter]
public string OverflowY { get; set; } = "overflow-y-hidden";
[Parameter]
public string Class { get; set; } = string.Empty;
}