aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/lists/list/list.module.scss
blob: 5a38b44815a6580da981839f0c7a466e78f44ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@use "../../../../styles/abstracts/placeholders";

.list {
  &--hierarchical {
    @extend %hierarchical-list;
  }

  &--inline {
    @extend %inline-list;
  }

  &--stack {
    .item {
      @extend %list-item;
    }
  }

  &--stack#{&} {
    &--ordered,
    &--unordered {
      @extend %regular-list;
    }
  }

  &--no-marker {
    list-style-type: none;
  }
}