diff --git a/_sass/leap/_variables.scss b/_sass/leap/_variables.scss index 8e42c8b..6c28e74 100644 --- a/_sass/leap/_variables.scss +++ b/_sass/leap/_variables.scss @@ -157,13 +157,6 @@ $text-size: ( 6: 0.875rem ); -$text-tracking: ( - 0: 1.4px, - 1: 1.3px, - 2: 1.2px, - 3: 1px -); - $gotham: "Gotham Rounded A", "Gotham Rounded B", "Helvetica", Helvetica, Arial, sans-serif; $bold: 500; diff --git a/_sass/leap/atoms/_typography.sass b/_sass/leap/atoms/_typography.sass index 0b7935b..26b5f6d 100644 --- a/_sass/leap/atoms/_typography.sass +++ b/_sass/leap/atoms/_typography.sass @@ -16,7 +16,6 @@ h1, h2, h3, h4, h5, h6 @for $num from 0 through 6 h#{$num} font-size: text-size($num) - letter-spacing: text-tracking($num) // Create text size classes @mixin header-size($suffix) @@ -26,11 +25,6 @@ h1, h2, h3, h4, h5, h6 .text-#{$size}-#{$suffix} font-size: #{$number} !important - // Iterate through each text-size to add letter-spacing - @each $size, $number in $text-tracking - .text-#{$size}-#{$suffix} - letter-spacing: #{$number} !important - // Adds the media queries to the header mixin @mixin header-classes($suffix, $media: null) diff --git a/_sass/leap/functions/_all.sass b/_sass/leap/functions/_all.sass index ad222cc..63187a3 100644 --- a/_sass/leap/functions/_all.sass +++ b/_sass/leap/functions/_all.sass @@ -1,7 +1,6 @@ @import spacing @import transition @import text-size -@import text-tracking @import border-vars @import form-feedback-vars @import ui-color diff --git a/_sass/leap/functions/_text-tracking.sass b/_sass/leap/functions/_text-tracking.sass deleted file mode 100644 index d8e373a..0000000 --- a/_sass/leap/functions/_text-tracking.sass +++ /dev/null @@ -1,3 +0,0 @@ -// Easily grab spacing within the $spacing map -@function text-tracking($value) - @return map-get($text-tracking, $value)