Added hypenation to BoardCardComponent title on large displays
This commit is contained in:
parent
152b775ea7
commit
ab2da2a2da
|
@ -1,6 +1,7 @@
|
||||||
<section class="w-80 max-w-xs">
|
@using System.Globalization
|
||||||
|
<section class="w-80 max-w-xs">
|
||||||
@if (!string.IsNullOrWhiteSpace(Heading)) {
|
@if (!string.IsNullOrWhiteSpace(Heading)) {
|
||||||
<h2 class="text-2xl lg:text-4xl mb-3">@Heading</h2>
|
<h2 class="text-2xl lg:text-4xl lg:hyphens-auto mb-3" lang="@CultureInfo.CurrentCulture">@Heading</h2>
|
||||||
}
|
}
|
||||||
@ChildContent
|
@ChildContent
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in a new issue