aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/nav/breadcrumb.module.scss
blob: c72e3494a89a6638f401b645ee34cd6cd5fc6bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@use "../../../styles/abstracts/placeholders";

.list {
  @extend %reset-ordered-list;

  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: var(--spacing-2xs);
}

.item {
  &:not(:last-of-type) {
    &::after {
      content: ">";
      margin-left: var(--spacing-2xs);
    }
  }
}