Skip to content

Commit

Permalink
Merge pull request #452 from desytech/451-fix-lexical-error
Browse files Browse the repository at this point in the history
Fix lexical error for css calculation of pinned rows
  • Loading branch information
alessandrojcm authored Dec 1, 2024
2 parents 58083ae + 246d28f commit 56b022a
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 56b022a

Please sign in to comment.