Update padding for MudPaper components across various features

Increased padding from 'pa-4' to 'pa-6' for MudPaper components in Events, MeetingSchedule, Students, and Teams features to ensure consistent styling and improved visual spacing.
This commit is contained in:
2025-12-27 10:43:15 -05:00
parent d19326781a
commit 5c1e0b7444
12 changed files with 14 additions and 14 deletions
@@ -21,7 +21,7 @@
</ActionButtons>
</PageHeader>
<MudPaper Elevation="2" Class="pa-4 mt-4">
<MudPaper Elevation="2" Class="pa-6 mt-4">
<MudGrid>
<MudItem Style="width:160px;">
<MudNumericField @bind-Value="_parameters.TeamSizeLimit"
@@ -117,7 +117,7 @@
<MudButton Class="ma-3" OnClick="Solve" Variant="Variant.Filled" Color="Color.Primary" Disabled="@_isSolving">Solve</MudButton>
</MudPaper>
<MudPaper Elevation="2" Class="pa-4 mt-4">
<MudPaper Elevation="2" Class="pa-6 mt-4">
<MudGrid>
<MudItem xs="12" lg="8">
<MudText Typo="Typo.h5" Class="mb-4">Students</MudText>
@@ -23,7 +23,7 @@
<DataAnnotationsValidator />
<MudGrid>
<MudItem xs="12" sm="7">
<MudPaper Class="pa-4">
<MudPaper Elevation="2" Class="pa-6">
<MudSelect T="EventDefinition" Value="@Team.Event" ValueChanged="OnEventChanged" Label="Event">
@foreach (var evt in _events)
+1 -1
View File
@@ -22,7 +22,7 @@
<DataAnnotationsValidator/>
<MudGrid>
<MudItem xs="12" sm="7">
<MudPaper Class="pa-4">
<MudPaper Elevation="2" Class="pa-6">
<StudentToggleSelector Students="@_students"
@bind-SelectedStudents="_selectedStudents"
Title="Students"
+1 -1
View File
@@ -16,7 +16,7 @@
}
else
{
<MudPaper Elevation="2" Class="pa-4">
<MudPaper Elevation="2" Class="pa-6">
@foreach (var student in _students)
{
<MudContainer Class="pagebreak">
+1 -1
View File
@@ -14,7 +14,7 @@
</ActionButtons>
</PageHeader>
<MudPaper Elevation="2" Class="pa-4">
<MudPaper Elevation="2" Class="pa-6">
<MudDataGrid T="Team"
ServerData="ServerReload"
@ref="_dataGrid"