@import "../vars.less";

.demo-calendar {
  .content {
    min-height: 100%;
  }
  
  .message {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: @text-color-lighter-1;
    font-size: 14px;
  }

  .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;

    &.info {
      background: @primary-color;
    }

    &.warn {
      background: @warning-color;
    }
  }
}