无效:
#userRights {
.el-input__icon{
line-height: 30px;
}
}
有效:
#userRights {
/deep/.el-input__icon{
line-height: 30px;
}
}
复制代码
无效:
#userRights {
.el-input__icon{
line-height: 30px;
}
}
有效:
#userRights {
/deep/.el-input__icon{
line-height: 30px;
}
}
复制代码