AI-Studio/app/MindWork AI Studio/Components/MudJustifiedText.cs

16 lines
348 B
C#
Raw Permalink Normal View History

2024-09-08 19:01:51 +00:00
namespace AIStudio.Components;
public class MudJustifiedText : MudText
{
#region Overrides of ComponentBase
protected override async Task OnInitializedAsync()
{
this.Align = Align.Justify;
this.Style = "hyphens: auto; word-break: auto-phrase;";
await base.OnInitializedAsync();
}
#endregion
}