mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
* Add SidebarPosition and FullHeight options to RadzenSidebar and adjust layout styles accordingly * Update RadzenLayout demos
12 lines
296 B
Plaintext
12 lines
296 B
Plaintext
@inherits RadzenComponentWithChildren
|
|
|
|
@if (Visible)
|
|
{
|
|
@if (IsResponsive)
|
|
{
|
|
<RadzenMediaQuery Query="@Query" Change=@OnChange />
|
|
}
|
|
<div @ref="@Element" style="@GetStyle()" @attributes="Attributes" class="@GetCssClass()" id="@GetId()">
|
|
@ChildContent
|
|
</div>
|
|
} |