.containerWithMenu {
    display: flex;
    flex-direction: row;
    height: 100%;
    overflow: hidden;
}
.menuChildren {
    flex: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.containerWithHeader {
    background: #F2F2F2;
    display: flex;
    height: 100%;
    flex-direction: column;
}
.headerChildren {
    flex: auto;
    overflow: auto;
    padding: 16px;
    height: 100%;

    &.noBodyPadding {
        padding: 0;
    }
}

.footer {
    background-color: #F2F2F2;
    color: #868686;
    border-top: 1px solid silver;
    padding: 0 8px;
    height: 30px;
    display: flex;
    align-items: center;
}
