Skip to content

Commit

Permalink
fix: scss stylelint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoyadmoon committed May 6, 2022
1 parent e1da772 commit ff68819
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions packages/core/src/styles/Radio.scss
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
@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 + .#{$prefix}-iconlayout > &__button {
background: url('../icons/svg/radio-selected.svg');
}
&__input:checked + &__button,
&__input:checked + .#{$prefix}-iconlayout > &__button {
background: url('../icons/svg/radio-selected.svg');
}
}

0 comments on commit ff68819

Please sign in to comment.