40 lines
840 B
SCSS
40 lines
840 B
SCSS
|
|
.ant-radio-group {
|
||
|
|
.ant-radio-wrapper {
|
||
|
|
margin-right: 24px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.ant-radio-wrapper {
|
||
|
|
.ant-radio {
|
||
|
|
.ant-radio-inner {
|
||
|
|
width: 14px;
|
||
|
|
height: 14px;
|
||
|
|
background-color: #fff;
|
||
|
|
border: 2px solid var(--Border-1, #d7d7d9);
|
||
|
|
&::after {
|
||
|
|
display: none !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
&.ant-radio-checked {
|
||
|
|
.ant-radio-inner {
|
||
|
|
border: 4px solid var(--Brand-6, #6d4cfe);
|
||
|
|
background-color: #fff;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
&.ant-radio-disabled {
|
||
|
|
.ant-radio-inner {
|
||
|
|
border: 2px solid var(--Border-1, #d7d7d9);
|
||
|
|
background-color: #f2f3f5;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
&.ant-radio-checked.ant-radio-disabled {
|
||
|
|
.ant-radio-inner {
|
||
|
|
border: 4px solid var(--Brand-6, #a794fe);
|
||
|
|
background-color: #fff;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
span.ant-radio + * {
|
||
|
|
padding: 0 0 0 8px;
|
||
|
|
}
|
||
|
|
}
|