Mendix comes in with built-in classes such as .text-left, .text-right, .text-center
These work on layout grids as well.
There is a bootstrap-class for that:justify-content-center
. If that does not work: add a class ‘centerMe’ to the button and add it to custom.scss:
.centerMe{
margin-left: auto;
margin-right: auto;
}
I tried to give you an example but no luck, this apparently is not enough.