This commit is contained in:
Ahmed Bouhuolia
2025-08-31 17:18:50 +02:00
parent eebe98f43b
commit 9a89d90f6e
9 changed files with 85 additions and 48 deletions

View File

@@ -182,6 +182,12 @@ const DashboardConstrantTable = styled(DataTable)`
`;
const CashflowTransactionsTable = styled(DashboardConstrantTable)`
--table-cell-border-color: #e6e6e6;
.bp4-dark & {
--table-cell-border-color: rgba(255, 255, 255, 0.15);
}
.table .tbody {
.tbody-inner .tr.no-results {
.td {
@@ -195,7 +201,7 @@ const CashflowTransactionsTable = styled(DashboardConstrantTable)`
.tbody-inner {
.tr .td:not(:first-child) {
border-left: 1px solid #e6e6e6;
border-left: 1px solid var(--table-cell-border-color);
}
}
}