Vue基础篇--el-upload改变框框的大小

// 上传图片框样式
.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改变框框的大小)