From 04610832db198061208b81bc9d7242b13c409e89 Mon Sep 17 00:00:00 2001 From: Hope Armstrong Date: Mon, 27 Jul 2020 10:40:30 -0700 Subject: [PATCH] Fixed tiny text issue --- _sass/leap/atoms/_typography.sass | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/_sass/leap/atoms/_typography.sass b/_sass/leap/atoms/_typography.sass index 9a66cc6..0b7935b 100644 --- a/_sass/leap/atoms/_typography.sass +++ b/_sass/leap/atoms/_typography.sass @@ -21,10 +21,14 @@ h1, h2, h3, h4, h5, h6 // Create text size classes @mixin header-size($suffix) - // Iterate through each text-size to create text size classes with letter-spacing - @each $size, $number in $text-size and $text-tracking + // Iterate through each text-size to create text size classes + @each $size, $number in $text-size .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