diff --git a/projects/components/src/table/table.component.scss b/projects/components/src/table/table.component.scss index 4512e6135..90de96246 100644 --- a/projects/components/src/table/table.component.scss +++ b/projects/components/src/table/table.component.scss @@ -84,6 +84,7 @@ $header-height: 32px; &.resizable { cursor: col-resize; + &:hover { padding: 0 2px; @@ -120,6 +121,12 @@ $header-height: 32px; } } +.last-row { + .data-cell { + border-color: transparent; + } +} + .state-watcher { top: $header-height; height: calc(100% - #{$header-height}); diff --git a/projects/components/src/table/table.component.ts b/projects/components/src/table/table.component.ts index cce3d3172..aeb9286f9 100644 --- a/projects/components/src/table/table.component.ts +++ b/projects/components/src/table/table.component.ts @@ -144,12 +144,13 @@ import { TableColumnConfigExtended, TableService } from './table.service';