目前面临的主要问题
checkbox的大小有点太大了,ms没法调整。
checkbox 和它对应的文本没有严格垂直居中对齐,
请参照下图,用了flex layout, 文本是垂直居中的。 但是明显checkbox向下有偏移。
希望能改进下。
/* 重写 checkbox 样式 */
checkbox .wx-checkbox-input {
border-radius: 50%;
width: 40rpx;
height: 40rpx;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
border: none;
background: red;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
border-radius: 50%;
width: 40rpx;
height: 40rpx;
line-height: 40rpx;
text-align: center;
font-size:30rpx;
color:#fff;
background: transparent;
transform:translate(-50%, -50%) scale(1);
-webkit-transform:translate(-50%, -50%) scale(1);
}