﻿.EntityEditorPane {
    border-left: 1px solid rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
    height: auto;
    overflow-y: auto;
}

.EntityEditorPane-selectEntityText {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.EntityEditorPane-header {
    flex-grow: 0;
    width: 100%;
    padding: 15px;
}

.EntityEditorPane-body {
    flex-grow: 1;
    width: 100%;
    overflow-y: auto;
    max-height: 100%;
    padding: 15px;
}

@media (width <= 992px) {
    .EntityEditorPane {
        min-height: unset;
        height: unset;
        overflow-y: unset;
    }
}
