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
This commit is contained in:
Victor
2017-02-28 01:25:05 +05:00
committed by Brandy Carney
parent 1128c8b8a2
commit 176aa2303f

View File

@ -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;