king
2022-06-28 0472ec32cadb4f9bca6dbab82ac33a42e76f37ed
src/tabviews/custom/components/timeline/normal-timeline/index.scss
@@ -41,7 +41,7 @@
  .card-row-list {
    overflow-y: auto;
    padding: 20px;
    padding: 15px;
    .card-item-box {
      text-align: left;
      overflow: hidden;
@@ -94,6 +94,58 @@
      background: #ffffff;
    }
  }
  .mk-time-line-wrap {
    display: flex;
    overflow-x: hidden;
    .mk-time-line-item {
      position: relative;
      width: 5%;
      flex: 1;
    }
    .mk-time-line-item:last-child {
      .mk-timeline-item-tail {
        display: none;
      }
    }
    .mk-timeline-item-head {
      position: relative;
      height: 20px;
      text-align: center;
      .mk-dot {
        position: absolute;
        background: #e8e8e8;
        padding: 5px;
        display: inline-block;
        border-radius: 20px;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        .anticon {
          font-size: 14px;
          color: #ffffff;
          width: 16px;
          height: 16px;
          vertical-align: top;
        }
      }
      .mk-dot-icon {
        width: 24px;
        height: 24px;
        padding: 4px;
      }
    }
    .mk-timeline-item-tail {
      position: absolute;
      top: 10px;
      left: 0px;
      width: 100%;
      transform: translate(50%, -1px);
      border-top: 2px solid #e8e8e8;
    }
  }
}
.normal-timeline-box::after {