style(richedit): 居中表格单元格内容
在表格单元格样式中添加 justify-content: center 以实现内容水平居中
This commit is contained in:
parent
dfc026dc99
commit
475e356548
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue