Skip to content

Commit 56b022a

Browse files
Merge pull request #452 from desytech/451-fix-lexical-error
Fix lexical error for css calculation of pinned rows
2 parents 58083ae + 246d28f commit 56b022a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/mantine-react-table/src/components/body/MRT_TableBody.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
}
3535

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

0 commit comments

Comments
 (0)