fixed Toast title formatting

This commit is contained in:
Mia Rose Winter 2024-09-09 17:05:35 +02:00
parent f9fc6397b5
commit 1bf313237f
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E

View file

@ -9,8 +9,10 @@
@if (message.Title is null) { @if (message.Title is null) {
@message.Body @message.Body
} else { } else {
<span class="font-bold">@message.Title</span> <div class="flex flex-col gap-2">
<span><small>@message.Body</small></span> <span class="font-bold">@message.Title</span>
<span><small>@message.Body</small></span>
</div>
} }
</div> </div>
} }