From 72cd265afe86140756d84a32e08a81479c2fdc8a Mon Sep 17 00:00:00 2001 From: harry Date: Wed, 19 Apr 2017 23:15:25 +0530 Subject: [PATCH] Position Helpers - Fixed typo! --- scss/_global.scss | 2 +- scss/prototype/_position.scss | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scss/_global.scss b/scss/_global.scss index 99f0e02f2..4cc96004f 100644 --- a/scss/_global.scss +++ b/scss/_global.scss @@ -76,7 +76,7 @@ $global-padding: 1rem !default; /// Global value used for positioning on components. /// @type Number -$global-postion: 1rem !default; +$global-position: 1rem !default; /// Global font weight used for normal type. /// @type Keyword | Number diff --git a/scss/prototype/_position.scss b/scss/prototype/_position.scss index 9e0218ebe..c14af4efc 100644 --- a/scss/prototype/_position.scss +++ b/scss/prototype/_position.scss @@ -35,16 +35,16 @@ $prototype-position-z-index: 975 !default; ) { position: $position !important; @if $top != null { - top: $top * $global-postion !important; + top: $top * $global-position !important; } @if $right != null { - right: $right * $global-postion !important; + right: $right * $global-position !important; } @if $bottom != null { - bottom: $bottom * $global-postion !important; + bottom: $bottom * $global-position !important; } @if $left != null { - left: $left * $global-postion !important; + left: $left * $global-position !important; } } -- 2.47.2