mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 21:29:06 +00:00
16 lines
348 B
C#
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
|
||
|
}
|