.nut-theme-dark {
  .nut-subsidenavbar {
    background-color: $dark-background2;
    &__title {
      background-color: $dark-background3;
      color: $dark-color;
      &__text {
        color: $dark-color;
      }
    }
  }
}
$nutSidenavbarItemHeight: 40px;

.nut-subsidenavbar {
  &__title {
    height: $nutSidenavbarItemHeight;
    padding: 10px 8px 10px 35px;
    background: #f7f8fa;
  }
  &__list {
    &.nutShow {
      .nut-subsidenavbar__content {
        height: auto;
        overflow: inherit;
      }
    }
    &.nutHide {
      .nut-subsidenavbar__content {
        height: 0;
        overflow: hidden;
      }
    }
  }
}
