From 176aa2303fc5edb7d2011514980b4252e8acf7cb Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 28 Feb 2017 01:25:05 +0500 Subject: [PATCH] fix(radio): calculate radio-inner width/height with border width (#10495) * Fix incorrect .radio-inner width/height calculation * Add additional fix to the .radio-inner width/height calculation of the android radio button icon --- src/components/radio/radio.md.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/radio/radio.md.scss b/src/components/radio/radio.md.scss index fcbcb093c3..91f231fd84 100644 --- a/src/components/radio/radio.md.scss +++ b/src/components/radio/radio.md.scss @@ -75,8 +75,8 @@ $radio-md-item-right-margin: $item-md-padding-media-top 10px $item-md-paddi top: $radio-md-icon-border-width; left: $radio-md-icon-border-width; - width: $radio-md-icon-width / 2; - height: $radio-md-icon-height / 2; + width: $radio-md-icon-width - $radio-md-icon-border-width * 4; + height: $radio-md-icon-height - $radio-md-icon-border-width * 4; border-radius: 50%; background-color: $radio-md-color-on;