mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
* Stack and RadzenRow/RadzenCol components added * Add responsive breakpoints scss map to utilities * Add initial layout styles for RadzenRow and RadzenCol * Update RadzenCol breakpoints and default css class * Rename rz-col-gap to rz-gap * RadzenCol Size property added * RadzenRow Gap and RowGap properties added * Add spacing utility css classes * Add RadzenCol offset and order styles * Update RadzenCol css class names * Order properties updated to string * Remove negative margin css classes * Add zero offset option * RadzenCol renamed to RadzenColumn * Fix offset map name * Add Row and Column demos * Rename RadzenCol to RadzenColumn * column order fixed * RadzenColumn reworked * Stack Spacing changed to Gap * stack demo updated * Add display: none utility class * Add Breakpoints and Spacing demos and update Layout demos * Add rz-stack css class and set default gap for stack to --rz-gap * Update demos Co-authored-by: yordanov <vasil@yordanov.info>
7 lines
187 B
Plaintext
7 lines
187 B
Plaintext
@inherits RadzenComponentWithChildren
|
|
|
|
@if (Visible)
|
|
{
|
|
<div @ref="@Element" @attributes="Attributes" class="@GetCssClass()" style="@GetStyle()" id="@GetId()">@ChildContent</div>
|
|
}
|