From 662e29c4c74cb56dc576e7a0319b827a82ea5d2b Mon Sep 17 00:00:00 2001 From: zhaojisen <1301338853@qq.com> Date: Mon, 24 Jun 2024 19:12:20 +0800 Subject: [PATCH] style: Fixed the bottom border of the operation column button in the table --- src/styles/index.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/styles/index.scss b/src/styles/index.scss index 4f9f874db..d36d1b9e9 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -285,6 +285,11 @@ input[type=file] { margin-top: 15px; } + // 表格右侧操作列,可能会存在高度占不满的问题,此时按钮底部会出现边框,因此需要显示指定 + .el-table__fixed-right { + height: 100% !important; + } + // 表头 .el-table__header thead > tr > th { .cell { @@ -343,7 +348,12 @@ input[type=file] { } &:last-child { + padding: 0; border-right: 1px solid #EBEEF5 !important; + + .cell { + vertical-align: unset; + } } }