diff options
Diffstat (limited to 'src/components/atoms/lists/list/list.module.scss')
| -rw-r--r-- | src/components/atoms/lists/list/list.module.scss | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/atoms/lists/list/list.module.scss b/src/components/atoms/lists/list/list.module.scss new file mode 100644 index 0000000..5a38b44 --- /dev/null +++ b/src/components/atoms/lists/list/list.module.scss @@ -0,0 +1,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; + } +} |
