classic-ui/assets/styles/components/_radio.scss
Danil Kovtonyuk 44f31f8b9f
init
2022-04-22 13:14:19 +10:00

32 lines
437 B
SCSS

.b-radio {
&.radio {
input[type=radio] {
+ .check {
border-color: $primary;
}
&:checked {
+ .check {
&:before {
transform: scale(.6);
}
}
}
}
+ .radio {
margin-left: 1rem;
}
.control-label {
display: flex;
align-items: center;
color: $white;
.button {
margin-left: .45rem;
}
}
}
}