/**
 * @file
 * Styles for breadcrumbs.
 */

.breadcrumb {
  padding-bottom: 0.5em;
  & ol {
    margin: 0;
    padding: 0;
    [dir="rtl"] & {
      /* This is required to win over specificity of [dir="rtl"] ol. */
      margin-right: 0;
    }
  }
  & li {
    display: inline;
    margin: 0;
    padding: 0;
    list-style-type: none;
    &::before {
      content: " \BB ";
    }
    &:first-child::before {
      content: none;
    }
  }
}
