﻿/* These classes must appear last in the load order in order for them to override specific settings in other app classes */
.app-flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.app-flex-column {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.app-flex-right {
    justify-content: flex-end;
}

.app-flex-left {
    justify-content: flex-start;
}
