From 49b02c388ce3a0183e30b914345deb8d3fa95a25 Mon Sep 17 00:00:00 2001 From: Geoff Kimball Date: Thu, 11 Feb 2016 09:54:21 -0800 Subject: [PATCH] Properly apply $keystroke-radius Sass variable to elements, closes #8132 --- scss/typography/_base.scss | 4 ++++ 1 file changed, 4 insertions(+) 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; + } } } -- 2.47.2