Skip to content

Commit

Permalink
fix(RadioGroup): corner not spilling outside border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincharity committed Aug 6, 2019
1 parent 3b40c13 commit fd6ec43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion terminus-ui/radio-group/src/radio-group.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
*/

.c-radio--visual {
$radius: 3px;
&.c-radio--small {
.c-radio__control {
height: 7rem;
Expand All @@ -90,6 +91,7 @@
.c-radio__control {
@include elevation-element(raised-button);
@include responsive-ratio(1, 1);
border-radius: $radius;
overflow: hidden;
padding: spacing(default);
position: relative;
Expand All @@ -100,7 +102,7 @@
@include take-space;
align-items: center;
border: 1px solid color(utility, light);
border-radius: 3px;
border-radius: $radius;
padding: spacing(default);
transition: border-color 200ms ease-in;

Expand Down

0 comments on commit fd6ec43

Please sign in to comment.