From 4002700ab2c18c55a0611a257eae07e3177f5184 Mon Sep 17 00:00:00 2001 From: Thomas Schlage Date: Fri, 25 Aug 2017 16:24:10 +0200 Subject: [PATCH] feat(spacing): Changed value of $space-xxl to 3rem and added new variable $space-xxxl with 4rem --- doc/designsystem/spacings.md | 3 ++- doc/general/3-spacing.md | 2 +- utils/variables/_spacings.scss | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/designsystem/spacings.md b/doc/designsystem/spacings.md index 3acd2a8..8852ace 100644 --- a/doc/designsystem/spacings.md +++ b/doc/designsystem/spacings.md @@ -12,7 +12,8 @@ $space-m: 1rem; // 16px $space-default: $space-m; $space-l: 1.5rem; // 24px $space-xl: 2rem; // 32px -$space-xxl: 4rem; // 64px +$space-xxl: 3rem; // 48px +$space-xxxl: 4rem; // 64px ``` ## Inset diff --git a/doc/general/3-spacing.md b/doc/general/3-spacing.md index ed98f2a..f3595c9 100644 --- a/doc/general/3-spacing.md +++ b/doc/general/3-spacing.md @@ -34,7 +34,7 @@ XL, $space-xl: 2rem XXL, $space-xxl: 3rem
-XXXL, $space-xxl: 4rem +XXXL, $space-xxxl: 4rem ## Grid diff --git a/utils/variables/_spacings.scss b/utils/variables/_spacings.scss index 1648add..ec6cc7b 100644 --- a/utils/variables/_spacings.scss +++ b/utils/variables/_spacings.scss @@ -5,7 +5,8 @@ $space-s: 0.75rem; // 12px $space-m: 1rem; // 16px $space-l: 1.5rem; // 24px $space-xl: 2rem; // 32px -$space-xxl: 4rem; // 64px +$space-xxl: 3rem; // 48px +$space-xxxl: 4rem; // 64px //Inset Spacing $inset-spacing-m: $space-m;