el-radio样式

76 阅读1分钟

// icon 默认样式

:deep(.el-radio__inner) { background: transparent; border: 1px solid #33b3fc; }

// 选中 icon 样式

:deep(.el-radio__inner::after) { width: 8px !important; height: 8px !important; background-color: #33b3fc !important; }

// 覆盖默认 样式

:deep(.el-radio__input.is-checked .el-radio__inner) { border: 1px solid #33b3fc !important; background-color: transparent !important; }

:deep(.el-radio-group.ml-4) { width: 100%; }

:deep(.el-radio.el-radio--large) {

width: 50%;
margin-right: 0 !important;
height: 40px;

}

.three-radio {

:deep(.el-radio.el-radio--large) {
  width: 33%;
  margin-right: 0 !important;
}

}