From 0cc1ebbffa666a5aeb687384518df3ba1424bf47 Mon Sep 17 00:00:00 2001 From: bjoern Date: Sun, 20 Jan 2019 17:41:17 +0100 Subject: [PATCH] new version --- package.json | 2 +- src/scss/_config.scss | 2 +- src/scss/functions/_zIndex.scss | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 6bca655..d278ff3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "crispy-boilerplate", - "version": "1.2.2", + "version": "1.2.3", "description": "Flat Sass Boilerplate to give you a amount of Basic Settings, Mixins and Functions", "repository": { "type": "git", diff --git a/src/scss/_config.scss b/src/scss/_config.scss index c96a368..58de007 100644 --- a/src/scss/_config.scss +++ b/src/scss/_config.scss @@ -13,7 +13,7 @@ $crispy__font-family: Arial, Helvetica, Neue Helvetica, sans-serif !default; $crispy__direction: ltr !default; // spacing -$crispy__spacing: toEm(10px) !default; +$crispy__spacing: 10px !default; $crispy__spacing__steps: 5 !default; // colors diff --git a/src/scss/functions/_zIndex.scss b/src/scss/functions/_zIndex.scss index d405b7e..ec92256 100644 --- a/src/scss/functions/_zIndex.scss +++ b/src/scss/functions/_zIndex.scss @@ -1,14 +1,14 @@ /** * function: z-index * - * uses map $crispy__z-index to get value by key + * uses map $crispy__z-index to get value by key * * @author Björn Hase * */ @function zIndex($name) { - @if has-key($crispy__z-index, $name) { + @if map-has-key($crispy__z-index, $name) { @return map-get($crispy__z-index, $name); } @else { @warn 'There is no item "#{$name}" in this list; choose one of: #{$crispy__z-index}';