Skip to content

Commit 1f78243

Browse files
authored
Stepper: fix header text not aligning (#226)
1 parent be4a65d commit 1f78243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeBeam.MudBlazor.Extensions/Components/Stepper/MudStepper.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
}
5252
@if (HeaderTextView == HeaderTextView.All || HeaderTextView == HeaderTextView.OnlyActiveText)
5353
{
54-
<MudText Class="mt-n1">
54+
<MudText Align="Align.Center" Class="mt-n1">
5555
@if (step.MudStepper.GetActiveIndex() == @step.MudStepper.Steps.IndexOf(@step))
5656
{
5757
<MudText Color="@(step.Status != StepStatus.Continued ? Color : Color.Inherit)"><b>@step.Title</b></MudText>

0 commit comments

Comments
 (0)