fix(style): dark style

This commit is contained in:
jialin
2025-04-29 18:05:43 +08:00
parent e5aa5ace15
commit 954b034b8b
23 changed files with 176 additions and 111 deletions
+12 -1
View File
@@ -1,10 +1,21 @@
.table-header {
position: relative;
min-height: 20px;
display: flex;
align-items: center;
justify-content: flex-start;
padding-inline: var(--ant-table-cell-padding-inline);
border-right: 1px solid var(--ant-table-header-split-color);
&::before {
position: absolute;
top: 50%;
inset-inline-end: 0;
width: 1px;
height: 1.6em;
background-color: var(--ant-table-header-split-color);
transform: translateY(-50%);
content: '';
}
&-last {
border-right: none;