Skip to content

Commit

Permalink
fix(comp:table): fixed end column z-index should be above fixed start…
Browse files Browse the repository at this point in the history
… columns (#1892)
  • Loading branch information
sallerli1 committed Apr 13, 2024
1 parent b122426 commit 4941867
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/components/table/style/fixed.less
@@ -1,9 +1,13 @@
.@{table-prefix} {
&-fix {
&-start {
z-index: 2;
}
&-end {
z-index: 3;
}
&-start,
&-end {
z-index: 2;

td& {
background-color: var(--ix-color-container-bg);
}
Expand Down

0 comments on commit 4941867

Please sign in to comment.