Improves hyphenation

This commit is contained in:
Thorsten Sommer 2024-09-08 16:23:59 +02:00
parent d0dbbccd56
commit 235e9cce77
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@
@foreach(var item in this.Items) @foreach(var item in this.Items)
{ {
<MudListItem T="string" Icon="@this.Icon" Style="display: flex; align-items: flex-start;"> <MudListItem T="string" Icon="@this.Icon" Style="display: flex; align-items: flex-start;">
<MudText Typo="Typo.body1" Style="text-align: justify; hyphens: auto;"><b>@item.Header:</b> @item.Text</MudText> <MudText Typo="Typo.body1" Align="Align.Justify" Style="hyphens: auto; word-break: auto-phrase;"><b>@item.Header:</b> @item.Text</MudText>
</MudListItem> </MudListItem>
} }
</MudList> </MudList>

View File

@ -0,0 +1,2 @@
# v0.9.7, build 182 (2024-09-09 xx:xx UTC)
- Improved hyphenation for continuous text so that the rules of the respective language are taken into account where possible.