@import '../style/theme.less';
.global-modal-alert {
    & .global-modal-alert-panel {
        padding: 8px 35px;
        position: relative;
        & .icon {
            position: absolute;
            top: 8px;
            left: 0px;
            color: @primary-color;
            font-size: 28px;
            &.success {
                color: @success-color
            }
            &.error {
                color: @error-color
            }
            &.warn {
                color: @warning-color
            }
        }
        & .title {
            padding: 4px 0;
            font-size: 14px;
            font-weight: bold;
        }
        &.no-title .title {
            display: none;
        }
        & .content {
            padding: 4px 0;
            font-size: 12px;
        }
    }
    & .ant-modal-body {
        min-height: 60px;
        padding-bottom: 0;
    }
    & .ant-modal-footer {
        border-top: 0;
    }
}