Files
SystemX.Web/Projects/WebClient/Web.Tra/Components/Module/BlockLabel.razor

12 lines
284 B
Plaintext

<span style="@($"font-size:1.3rem; width:{MaxWidth}; max-width:{MaxWidth}; display:inline-block;white-space:normal;word-wrap:break-word;")">
@Text
</span>
@code {
[Parameter]
public string Text { get; set; }
[Parameter]
public string MaxWidth { get; set; }
}