summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/nav/nav.module.scss
blob: 9c0f6de29ac7a6583b3d18fc548465f1ac9ca5e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@use "@styles/abstracts/mixins" as mix;
@use "@styles/abstracts/placeholders";

.nav {
  &__list {
    @extend %reset-list;

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

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