From: Geoff Kimball Date: Thu, 11 Feb 2016 17:54:21 +0000 (-0800) Subject: Properly apply $keystroke-radius Sass variable to elements, closes #8132 X-Git-Tag: v6.2.0-rc.1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49b02c388ce3a0183e30b914345deb8d3fa95a25;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Properly apply $keystroke-radius Sass variable to elements, closes #8132 --- diff --git a/scss/typography/_base.scss b/scss/typography/_base.scss index 96f4ac61c..55a9b5188 100644 --- a/scss/typography/_base.scss +++ b/scss/typography/_base.scss @@ -435,5 +435,9 @@ $abbr-underline: 1px dotted $black !default; background-color: $keystroke-background; color: $keystroke-color; font-family: $keystroke-font; + + @if has-value($keystroke-radius) { + border-radius: $keystroke-radius; + } } }