I have a site built on Bootstrap 3. I've created a custom row class to add flexbox to the layout but it doesn't seem to work correctly in Safari.
.row-eq-height {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
}
.row-eq-height > [class*='col-'] {
display: flex;
flex-direction: column;
justify-content: center;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="container">
<div class="row row-eq-height">
<div class="col-xs-6">
This should be on the left
</div>
<div class="col-xs-6">
This should be on the right
</div>
</div>
</div>
Any ideas what's going on here?