Vue基础篇--el-upload改变框框的大小
作者:
柒个M | 来源:发表于
2020-08-20 09:52 被阅读0次// 上传图片框样式
.el-upload--picture-card{
border: 1px dashed #13C3C7;
}
.el-upload--picture-card:hover {
border-color: #13C3C7;
color: #13C3C7;
}
.el-upload--picture-card{
width: 100px;
height: 100px;
font-size: 16px !important;
}
.el-upload{
width: 100px;
height: 100px;
line-height: 100px;
font-size: 16px;
}
.el-upload-list--picture-card .el-upload-list__item{
width: 100px;
height: 100px;
line-height: 100px;
font-size: 16px;
}
.el-upload-list--picture-card .el-upload-list__item-actions:hover {
opacity: 1;
font-size: 16px;
}
.el-upload-list--picture-card .el-upload-list__item-thumbnail{
width: 100px;
height: 100px;
line-height: 100px;
font-size: 16px;
}
.avatar{
width: 100px;
height: 100px;
}
本文标题:Vue基础篇--el-upload改变框框的大小
本文链接:https://www.haomeiwen.com/subject/rjldjktx.html
网友评论