Merge pull request #84 from bigcapitalhq/BIG-406-accounts-chart-lags-scroll-down

fix(webapp): accounts chart lags scroll down
This commit is contained in:
Ahmed Bouhuolia
2023-02-14 23:25:43 +02:00
committed by GitHub
2 changed files with 10 additions and 8 deletions

View File

@@ -72,6 +72,7 @@ export default function TableCell({ cell, row, index }) {
[`td-${cell.column.id}`]: cell.column.id, [`td-${cell.column.id}`]: cell.column.id,
[`td-${cellType}-type`]: !!cellType, [`td-${cellType}-type`]: !!cellType,
}), }),
tabindex: 0,
onClick: handleCellClick, onClick: handleCellClick,
})} })}
> >

View File

@@ -208,6 +208,11 @@
width: 100%; width: 100%;
} }
} }
&:focus {
outline: rgba(0, 82, 204, 0.6) auto 1px;
outline-offset: 1px;
}
} }
.tr:hover .td { .tr:hover .td {
@@ -357,13 +362,9 @@
position: sticky; position: sticky;
} }
[data-sticky-last-left-td] { [data-sticky-last-left-td] {}
} [data-sticky-first-right-td] {}
[data-sticky-first-right-td] {
}
} }
&.has-virtualized-rows { &.has-virtualized-rows {