@import '../style/var.less';
.workflow--label-title {
  padding: @padding;
  font-size: @fontSize;
  color: @fontColor;
  position: relative;
  line-height: 20px;
  &::before {
    content: '';
    position: absolute;
    border-radius: @radius;
    background-color: @primary;
    width: 3px;
    height: 16px;
    top: 12px;
    left: 0;
  }
  &::after {
    border-color: @borderColor;
  }
}