Skip to content

Commit

Permalink
use proper fallback calculation value for pinned top and bottom rows #…
Browse files Browse the repository at this point in the history
  • Loading branch information
desytech committed Nov 29, 2024
1 parent f5ca287 commit 246d28f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
}

.pinned {
bottom: calc(var(--mrt-table-footer-height, unset) * 1px - 1px);
bottom: calc(var(--mrt-table-footer-height, 0) * 1px - 1px);
position: sticky;
top: calc(var(--mrt-table-head-height, unset) * 1px - 1px);
top: calc(var(--mrt-table-head-height, 0) * 1px - 1px);
z-index: 1;
}

0 comments on commit 246d28f

Please sign in to comment.