Flexbox align items vertically with min-height on wrapper with fix for IE11
.wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  min-height: 90vh;
  &::after {
    content: '';
    font-size: 0;
    min-height: inherit;
  }
}