Skip to content

Commit

Permalink
fix: linter errors in Radio.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoyadmoon committed May 6, 2022
1 parent e1b1bb1 commit 9cf2722
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions packages/core/src/styles/Radio.scss
@@ -1,28 +1,28 @@
@import "./mixins";

.#{$prefix}-radio {
&__icon-wrapper {
position: relative;
flex: 0 0 auto;
}
&__icon-wrapper {
position: relative;
flex: 0 0 auto;
}

&__input {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
opacity: 0;
z-index: 2;
cursor: pointer;
}
&__input {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
opacity: 0;
z-index: 2;
cursor: pointer;
}

&__button {
position: relative;
z-index: 1;
background: url('../icons/svg/radio-empty.svg');
}
&__button {
position: relative;
z-index: 1;
background: url('../icons/svg/radio-empty.svg');
}

&__input:checked + &__button,
&__input:checked + &__button,
&__input:checked + .#{$prefix}-iconlayout > &__button {
background: url('../icons/svg/radio-selected.svg');
}
Expand Down

0 comments on commit 9cf2722

Please sign in to comment.