Commit 2765c4ad by YunaiV

修复Logo组件与ToolHeader组件、ElScrollbar组件之间存在1px留白的问题

parent e4154745
...@@ -54,6 +54,7 @@ ${selector}:after { ...@@ -54,6 +54,7 @@ ${selector}:after {
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
width: 1px;
height: 100%; height: 100%;
background-color: var(--el-border-color); background-color: var(--el-border-color);
z-index: 3; z-index: 3;
...@@ -72,6 +73,7 @@ ${selector}:before { ...@@ -72,6 +73,7 @@ ${selector}:before {
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 1px;
background-color: var(--el-border-color); background-color: var(--el-border-color);
z-index: 3; z-index: 3;
} }
...@@ -89,6 +91,7 @@ ${selector}:after { ...@@ -89,6 +91,7 @@ ${selector}:after {
bottom: 0; bottom: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 1px;
background-color: var(--el-border-color); background-color: var(--el-border-color);
z-index: 3; z-index: 3;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment