//
// Flex layout
//

@mixin row-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

@mixin col-flex {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
