aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/nav/breadcrumb.module.scss
blob: c26f60ac9b5a1b4917dbe089e0c2d0b8c5c81f44 (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);
    }
  }
}