From ff688194a0f201660cfc8804adda03474be1e4c9 Mon Sep 17 00:00:00 2001 From: DMoon Date: Fri, 6 May 2022 12:53:34 +0800 Subject: [PATCH] fix: scss stylelint errors --- packages/core/src/styles/Radio.scss | 44 ++++++++++++++--------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/packages/core/src/styles/Radio.scss b/packages/core/src/styles/Radio.scss index 40cf02da..20189869 100644 --- a/packages/core/src/styles/Radio.scss +++ b/packages/core/src/styles/Radio.scss @@ -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'); + } }