Skip to content

Commit

Permalink
fix(addon-table): Table disappearing borders (#5999)
Browse files Browse the repository at this point in the history
  • Loading branch information
Smedrix authored Nov 17, 2023
1 parent 4ff58c7 commit 6dcdb66
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions projects/addon-table/components/table/td/td.style.less
Original file line number Diff line number Diff line change
@@ -12,6 +12,9 @@
box-sizing: border-box;
// Create new viewport for fixed positioning
filter: opacity(1);
.safari-only({
transform: translate3d(0, 0, 0);
});

&:first-child {
left: 0;
3 changes: 3 additions & 0 deletions projects/addon-table/components/table/th/th.style.less
Original file line number Diff line number Diff line change
@@ -17,6 +17,9 @@
border: 1px solid var(--tui-base-04);
// Create new viewport for fixed positioning
filter: opacity(1);
.safari-only({
transform: translate3d(0, 0, 0);
});

&:not(:first-child) {
border-left: none;

0 comments on commit 6dcdb66

Please sign in to comment.