Skip to content

Commit 6a68582

Browse files
refactor: update positioning of table state watcher (#788)
1 parent 6deb3bf commit 6a68582

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

projects/components/src/table/table.component.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@import 'mixins';
22
@import 'layout';
33

4+
$header-height: 32px;
45
.table {
56
position: relative;
67
display: flex;
@@ -28,7 +29,7 @@
2829
flex-direction: row;
2930
position: sticky;
3031
top: 0;
31-
height: 32px;
32+
height: $header-height;
3233
background: $gray-1;
3334
border-bottom: 1px solid $gray-2;
3435
border-top-left-radius: 3px;
@@ -111,7 +112,8 @@
111112
}
112113

113114
.state-watcher {
114-
height: calc(100% - #{$paginator-height});
115+
top: $header-height;
116+
height: calc(100% - #{$header-height});
115117
width: 100%;
116118
position: absolute;
117119
background: transparent;

0 commit comments

Comments
 (0)