@import '../style/var.less';
.workflow--tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
  height: @tabsHeight;
  .tab {
    flex: 1;
    text-align: center;
    line-height: @tabsHeight;
    font-size: @tabFontSize;
    color: #333333;
    background-color: #ebf3fe;
    &.active {
      color: @primary;
      background-color: #ffffff;
    }
  }
}