Centre align button in a Layout Grid Column

0
Any idea how I can centre align a button in a column?
asked
2 answers
1
Mendix comes in with built-in classes such as .text-left, .text-right, .text-center
These work on layout grids as well.

 

answered
-1

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.

answered