.breadcrumbs {
  min-height: 16px;
  padding-top: $base-spacing-half;
  padding-bottom: $base-spacing-half;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: $base-white;
  background: $tundra-500;

  ul {
    display: flex;
    margin: 0;
    padding: 0;
    height: 16px; // total height should be 32px
    list-style: none;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;

    li {
      float: left;

      a {
        color: $base-white;
      }

      &:not(:last-child)::after {
        content: '/';
        margin-left: $base-spacing-half;
        margin-right: $base-spacing-half;
      }
    }

    &::after {
      content: '';
      clear: both;
    }
  }
}
