Sha256: 4c84e5c8541d04e66aafe74c52d1d6cb937aa7452b64375da7f395509ede03af

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

// Tabs
.tab {
  align-items: center;
  border-bottom: $border-width solid $border-color;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: $unit-1 0 $unit-1 - $border-width 0;

  .tab-item {
    margin-top: 0;

    &.tab-action {
      flex: 1 0 auto;
      text-align: right;
    }

    a {
      border-bottom: $border-width-lg solid transparent;
      color: inherit;
      display: block;
      margin: 0 $unit-2 0 0;
      padding: $unit-2 $unit-1 $unit-2 - $border-width-lg $unit-1;
      text-decoration: none;
      &:focus,
      &:hover {
        color: $link-color;
      }
    }
    &.active a,
    a.active {
      border-bottom-color: $primary-color;
      color: $link-color;
    }
  }

  &.tab-block {
    .tab-item {
      flex: 1 0 0;
      text-align: center;

      a {
        margin: 0;
      }

      .badge {
        &[data-badge]::after {
          position: absolute;
          right: -4px;
          top: -4px;
          transform: translate(0, 0);
        }
      }
    }
  }

  &:not(.tab-block) {
    .badge {
      padding-right: 2px;
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spectre_scss-0.3.2.0 vendor/assets/stylesheets/spectre/src/_tabs.scss