Vertically center content in slider

Hey @forgelab !
I don’t think that there is a native way of doing that on the slider component. But you can always add custom css to achieve that. You’d want to target the swiper-wrapper class.

.swiper-wrapper {
    align-items: center;
}