style(richedit): 居中表格单元格内容

在表格单元格样式中添加 justify-content: center 以实现内容水平居中
This commit is contained in:
34701892@qq.com 2025-12-02 15:47:04 +08:00
parent dfc026dc99
commit 475e356548
2 changed files with 2 additions and 0 deletions

View File

@ -1152,6 +1152,7 @@ onMounted(async () => {
:deep(.el-table td.el-table__cell div) { :deep(.el-table td.el-table__cell div) {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center;
} }
.record_btn { .record_btn {

View File

@ -1381,6 +1381,7 @@ onMounted(async () => {
:deep(.el-table td.el-table__cell div) { :deep(.el-table td.el-table__cell div) {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center;
} }
.el-button + .el-button { .el-button + .el-button {