ant-design-blazor/components/space/Space.razor
anranruye 1ec582bff3 fix(module: space): fix space items behavior when they are inside if block (#1684)
* fix(module:space): fix space item margin

* remove Index parameter

* remove additional using

* Update Customize.razor space demo

* Update SpaceItem.raz
2021-06-30 13:41:38 +08:00

9 lines
261 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
@{ SpaceItemCount = 0; }
<CascadingValue Value="this" IsFixed="@true">
<div class="@ClassMapper.Class" style="@Style @InnerStyle" id="@Id" @ref="@Ref">
@ChildContent
</div>
</CascadingValue>