@import (reference) '../theme/variables/antdVariables.less';
@alert-prefix-cls: ~'@{ant-prefix}-alert';

.ued-alert{
  background-color: white;
  .@{alert-prefix-cls}-info {
    .@{alert-prefix-cls}-content{
      color: @info-color;
    }
  }
  .@{alert-prefix-cls}-success {
    .@{alert-prefix-cls}-content{
      color: @success-color;
    }
  }
  .@{alert-prefix-cls}-error {
    .@{alert-prefix-cls}-content{
      color: @error-color;
    }
  }
  .@{alert-prefix-cls}-warning {
    .@{alert-prefix-cls}-content{
      color: @warning-color;
    }
  }
  .@{alert-prefix-cls} {
    align-items: start;
  }
  .@{alert-prefix-cls}-icon {
    margin-top: 4px;
  }
  .ued-alert-description {
    margin-top: 2px;
    color: #414352;
  }
}