mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 04:58:05 +08:00
1ec582bff3
* fix(module:space): fix space item margin * remove Index parameter * remove additional using * Update Customize.razor space demo * Update SpaceItem.raz
14 lines
329 B
C#
14 lines
329 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
@{ ChangeSize(); }
|
|
@if (Parent?.Split != null && _index != 0)
|
|
{
|
|
<span class="ant-space-item-split" style="margin-right: 4px;">
|
|
@Parent.Split
|
|
</span>
|
|
}
|
|
|
|
<div class="@ClassMapper.Class" style="@Style @_marginStyle" @ref="Ref" id="@Id">
|
|
@ChildContent
|
|
</div> |