Skip to content

Commit

Permalink
fix(list): remove unnecessary z-index (#7678)
Browse files Browse the repository at this point in the history
**Related Issue:** #7599

## Summary

- removes z-index on a container within the list component
  • Loading branch information
driskull authored Sep 6, 2023
1 parent 6ae963e commit 1f4cd97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ td {

tr:focus,
td:focus {
@apply focus-inset z-sticky;
@apply focus-inset;
}

.content,
Expand Down
4 changes: 1 addition & 3 deletions packages/calcite-components/src/components/list/list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
flex
w-full
flex-col
bg-transparent
relative
z-default;
bg-transparent;
* {
@apply box-border;
}
Expand Down

0 comments on commit 1f4cd97

Please sign in to comment.