Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

angular material vertical stepper separate label and content section

enter image description here

If i add this css:

mat-step-header{
  display: flex ;
  justify-content: flex-end ;
}

I am trying to get this stepper to work.

I used angular material design for vertical stepper. How can I make the stepper title on the left and content to right side like the example here.

or is there any module?

like image 583
vinotha Avatar asked Nov 07 '22 21:11

vinotha


1 Answers

enter image description hereApply below flex properties to your mat-step-header which will only align header to the right

mat-step-header{
  display: flex ;
  justify-content: flex-end ;
}
like image 176
Hameed Syed Avatar answered Nov 11 '22 12:11

Hameed Syed