在mui中有时会调节复选框和圆的大小,发现单独的调节某处的样式,并没有效果。用js也是。在这想到重写他的样式,把原来的给覆盖掉,
<style type="text/css">
.mui-checkbox input[type=checkbox]:before,
.mui-radio input[type=radio]:before {
font-family: Muiicons;
font-size: 6px; //改变大小,设置圆的大小
font-weight: 400;
line-height: 1;
text-decoration: none;
color: #aaa;
border-radius: 0;
background: 0 0;
-webkit-font-smoothing: antialiased;
}
</style>