Hi there!
I am trying to vertically align an image in a column. I added the class vertical-center to the column with this css:
.x-container.vertical-center {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
align-content: stretch;
}
However, that does not work?