修改element ui plus的样式

不浪费时光 / 2024-10-22 / 原文

使el-input中的文字居中

<el-input class="center-input" />
::v-deep(.center-input .el-input__inner) {
  text-align: center;
}

隐藏输入框的边框

:deep(.el-input__wrapper) {
  box-shadow: none;
}