Skip to content

Commit

Permalink
fix(radioButtonGroup): update RadioButtonGroup design (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
KRRISH96 authored and rishichawda committed Jan 1, 2019
1 parent 645ed1a commit ed515c4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/radioButtonGroup/theme.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
position: relative;
opacity: 0;
cursor: pointer;
margin: 3px;
margin: 0px;
}
/* Fixes width issue in safari */
@media not all and (min-resolution:.001dpcm) {
Expand All @@ -31,10 +31,18 @@
}

:local(.customized-radio) {
display: inline-block;
border: 3px solid $secondary-grey;
border-radius: 50%;
padding: 3px;
height: 30px;
width: 30px;
box-sizing: border-box;
.inner {
display: inline-block;
height: 100%;
width: 100%;
box-sizing: content-box;
border-radius: 50%;
&.checked {
background: $secondary-blue;
Expand Down

0 comments on commit ed515c4

Please sign in to comment.