Skip to content

Commit

Permalink
fix: chapter panel height
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystianKempski committed Dec 11, 2024
1 parent aaffd77 commit b80b3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DagoniteEmpire/Pages/Chat/ChapterList.razor
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
@foreach (var chap in Chapters)
{
<div class="d-flex flex-column camp">
<MudPaper Class="d-flex flex-column pa-3 ma-0" Height="230px" Width="100%" @onclick="@(()=>ChooseChapter(chap))">
<MudPaper Class="d-flex flex-column pa-3 ma-0" MinHeight="230px" Width="100%" @onclick="@(()=>ChooseChapter(chap))">

<MudStack Spacing="0" Row="true">
<MudText Class="flex-grow-1" Typo="Typo.h6">@chap.Name</MudText>
Expand Down

0 comments on commit b80b3d2

Please sign in to comment.