aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/nav/nav.module.scss
blob: a6d43bc2211586acc9710e3f949786af57bbcb47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@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);
      }
    }
  }
}