Skip to content

Commit

Permalink
CB-5793 removes extra space for table cells (#3013)
Browse files Browse the repository at this point in the history
Co-authored-by: mr-anton-t <42037741+mr-anton-t@users.noreply.github.com>
  • Loading branch information
sergeyteleshev and mr-anton-t authored Oct 24, 2024
1 parent 51e0218 commit 1782ce4
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,17 @@
border-bottom-color: var(--theme-positive) !important;
}

:global(.rdg-cell:first-child) {
border-left: 2px solid rgba(0, 0, 0, 0) !important;
}

:global(.rdg-cell-custom-highlighted-row) {
background: var(--data-grid-selected-row-color) !important;

&:global(.rdg-cell:first-child) {
border-left: 2px solid var(--data-grid-index-cell-border-color) !important;
&:global(.rdg-cell:first-child::before) {
position: absolute;
content: '';
top: 0;
left: 0;
width: 2px;
height: 100%;
background-color: var(--data-grid-index-cell-border-color);
}
}

Expand Down

0 comments on commit 1782ce4

Please sign in to comment.