From 4e118d2c2a4e6dc2f8f01274fd5e5cdab1b62a3e Mon Sep 17 00:00:00 2001 From: HerrHase Date: Fri, 21 Jan 2022 15:17:31 +0100 Subject: [PATCH] adding #38 --- src/scss/helpers/_spacing.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/scss/helpers/_spacing.scss b/src/scss/helpers/_spacing.scss index 1e33777..d6fe6df 100644 --- a/src/scss/helpers/_spacing.scss +++ b/src/scss/helpers/_spacing.scss @@ -110,7 +110,10 @@ $spacing-steps: 10 !default; @each $direction in $spacing-direction { @include spacing('m', 'margin', 0, 0, $direction); + @include spacing_breakpoints('m', 'margin', 0, 0, $direction); + @include spacing('m', 'margin', 1, 1px, $direction); + @include spacing_breakpoints('m', 'margin', 1, 1px, $direction); @for $i from 2 through $spacing-steps { $value: $spacing-gap * factor($i - 1) * 1rem; @@ -131,7 +134,10 @@ $spacing-steps: 10 !default; @each $direction in $spacing-direction { @include spacing('p', 'padding', 0, 0, $direction); + @include spacing_breakpoints('p', 'padding', 0, 0, $direction); + @include spacing('p', 'padding', 1, 1px, $direction); + @include spacing_breakpoints('p', 'padding', 1, 1px, $direction); @for $i from 0 through $spacing-steps { $value: $spacing-gap * factor($i - 1) * 1rem;