Position prev next Steps component

Hi,
Is it possible to position the previous and next buttons of the Steps components , e.q. center these ?

Regards,
Mehmet

Hi @mcanavar,

You can do that via some CSS. Add the following to client\src\styles.css:

.ui-steps-buttons {
  justify-content: center;
}

.ui-steps-prev {
  margin-right: 16px;
}