@charset "utf-8";
/**
 * Created by henian.xu on 2018/7/24.
 *
 */

.el-dialog {
    max-height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    &.is-fullscreen {
        max-height: none;
    }
    &__header {
        flex: 0 0 auto;
    }
    &__body {
        flex: 1 1 auto;
        overflow: auto;
    }
    &__footer {
        flex: 0 0 auto;
    }
}
