ant-design-blazor/components/message/Message.razor
James Yeung d2e9c4b247 feat(module: config-provider): support RTL (#1238)
* feat(module: config-provider): support RTL

* add rtl for each component

* fix rtl for pagination

* add rtl for overlay
2021-03-31 19:23:26 +08:00

16 lines
391 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
@if (_configs.Count > 0)
{
<div>
<div class="ant-message" style="top: @(_top)px;" @ref="Ref">
<span>
@foreach (var config in _configs)
{
<MessageItem @key="config" Config="config"></MessageItem>
}
</span>
</div>
</div>
}