﻿/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/*
 * Styles copied from the Grid example to make grid rows & columns visible.
 */

@media print {
    .row-eq-height {
        display: block;
    }
}

