aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/nav/nav-list.module.scss
blob: 316638ee97ae1222ea2c22b2b1d72d21240bc6d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.nav {
  &--main {
    width: fit-content;
  }

  &--main & {
    &__item {
      flex: 1;
    }
  }

  &--footer & {
    &__item:not(:first-child) {
      &::before {
        content: "\2022";
        margin-right: var(--spacing-2xs);
      }
    }
  }
}