Template grid arrangement

0
Hello everyone, I have different values here in this template grid and I would like them all aligned (I blurred because it is sensitive content)How could I make all values arranged and not be one row to the right and another to the left as it is in the picture above.
asked
1 answers
1

hello 

on your style file you can reach the father class for this text and give it this style 

here an example 

image.png

image.png

on your sass style file write this code 

 

.eng-list-con{

    .mx-templategrid-item{

           

  .mx-name-container5{

display: flex !important;

justify-content: left  !important;

}

}

}

 

answered