aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/lists/list.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-14 19:12:54 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-14 19:24:46 +0200
commit15fd9f4a6ecf947c7648c6b7865b97c40124fde1 (patch)
tree528ef96e731b0dd9c3c15d398b75f2877473289e /src/components/atoms/lists/list.module.scss
parent872b0c172a38db4f440dc6044eb1d5725c03abb1 (diff)
chore: add a MainNav component
Diffstat (limited to 'src/components/atoms/lists/list.module.scss')
-rw-r--r--src/components/atoms/lists/list.module.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/atoms/lists/list.module.scss b/src/components/atoms/lists/list.module.scss
index c6fbf53..df3b49c 100644
--- a/src/components/atoms/lists/list.module.scss
+++ b/src/components/atoms/lists/list.module.scss
@@ -9,12 +9,6 @@
margin-top: var(--spacing-2xs);
}
- &__item {
- &:not(:last-child) {
- margin-bottom: var(--spacing-2xs);
- }
- }
-
&--ordered {
padding: 0;
counter-reset: li;
@@ -36,4 +30,10 @@
&--unordered {
padding: 0 0 0 var(--spacing-sm);
}
+
+ &--has-margin &__item {
+ &:not(:last-child) {
+ margin-bottom: var(--spacing-2xs);
+ }
+ }
}