AI-Studio/app/MindWork AI Studio/Components/MudJustifiedText.cs
2024-09-08 21:01:51 +02:00

16 lines
348 B
C#

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
}