43 lines
769 B
SCSS
Executable File
43 lines
769 B
SCSS
Executable File
.sp-checkbox-new {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
&__label {
|
|
margin-left: 10px;
|
|
}
|
|
.icon-my {
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
@keyframes scale {
|
|
0% {
|
|
transform: scale(0.1);
|
|
}
|
|
50% {
|
|
transform: scale(1.5);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
// .icon-checkbox-weixuan {
|
|
// animation: scale 0.5s reverse forwards;
|
|
// }
|
|
// .icon-checkbox-xuanzhong {
|
|
// animation: scale 0.5s forwards;
|
|
// }
|
|
.icon-checkbox-xuanzhong,
|
|
.icon-roundcheckfill {
|
|
font-size: 40px;
|
|
color: var(--color-primary) !important;
|
|
}
|
|
.icon-checkbox-weixuan,
|
|
.icon-round {
|
|
font-size: 40px;
|
|
color: #ccc;
|
|
}
|
|
.icon-circle1 {
|
|
font-size: 38px;
|
|
color: #ddd;
|
|
}
|
|
}
|