fix: darkmode bank transaction drawer

This commit is contained in:
Ahmed Bouhuolia
2025-12-23 19:57:31 +02:00
parent f2663c4af3
commit 7cb169bce9
6 changed files with 38 additions and 34 deletions

View File

@@ -24,11 +24,19 @@ export const TD = styled.td`
export const TRDarkSingleLine = styled(TR)`
${TD} {
border-bottom: 1px solid #000;
.bp4-dark & {
border-bottom-color: var(--color-dark-gray5);
}
}
`;
export const TRDarkDoubleLines = styled(TR)`
${TD} {
border-bottom: 3px double #000;
.bp4-dark & {
border-bottom-color: var(--color-dark-gray5);
}
}
`;