
.nut-tabbar-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: $tabbar-inactive-color;
  height: 100%;

  &-icon-box {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;

    .nut-icon {
      width: 24px;
      height: 24px;
      font-size: 24px;
    }

    &-nav {
      display: block;
      font-size: $tabbar-text-font-size;
      margin-top: $tabbar-text-margin-top;
    }

    &-large {
      font-size: $tabbar-text-large-font-size;
      margin-top: 0;
      line-height: $tabbar-text-line-height;
      font-weight: $tabbar-text-large-font-weight;
    }
  }

  &-active {
    color: $tabbar-active-color;

    .nut-tabbar-item-icon-box {
      color: inherit;

      .nut-icon {
        color: inherit;
      }
    }
  }
}
