]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Position Helpers - Fixed typo!
authorharry <harmanmanchanda182@gmail.com>
Wed, 19 Apr 2017 17:45:25 +0000 (23:15 +0530)
committerharry <harmanmanchanda182@gmail.com>
Wed, 19 Apr 2017 17:45:25 +0000 (23:15 +0530)
scss/_global.scss
scss/prototype/_position.scss

index 99f0e02f29e2766c8f692e35ff9b951bb2e40fbd..4cc96004f33d9f8452ff6e48515c0fac1242c369 100644 (file)
@@ -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
index 9e0218ebee1f9d9afb3d4df346fdaead478ef1ce..c14af4efc2bd56f3fe470d83cfe02e69c371405c 100644 (file)
@@ -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;
   }
 }