Fix the spacing for PET tables [SCI-7772]

This commit is contained in:
sboursen-scinote 2023-02-10 14:27:25 +01:00
parent 6e44c8895d
commit a6eb682234
2 changed files with 7 additions and 2 deletions

View file

@ -56,7 +56,7 @@
border: 1px solid $color-white;
display: flex;
height: 3em;
padding: 0 .5em;
padding: 0 calc((3em - var(--sci-checkbox-size))/2);
position: sticky;
position: -webkit-sticky;
top: 0;
@ -83,6 +83,11 @@
.table-body {
display: contents;
.table-body-cell {
display: flex;
justify-content: center;
}
}
.loading-overlay {

View file

@ -129,7 +129,7 @@
border: 1px solid $color-white;
display: flex;
height: 3em;
padding: 0 .5em;
padding: 0 calc((3em - var(--sci-checkbox-size))/2);
position: sticky;
position: -webkit-sticky;
top: calc(var(--content-header-size) + var(--navbar-height));