feat: wip categorize the cashflow transactions

This commit is contained in:
Ahmed Bouhuolia
2024-03-06 22:15:31 +02:00
parent a17b4f6a8a
commit d87d674aba
27 changed files with 768 additions and 144 deletions

View File

@@ -1,5 +1,6 @@
// @ts-nocheck
import React from 'react';
import clsx from 'classnames';
import { Classes } from '@blueprintjs/core';
import { LoadingIndicator } from '../Indicator';
@@ -11,8 +12,8 @@ export function DrawerLoading({ loading, mount = false, children }) {
);
}
export function DrawerBody({ children }) {
return <div className={Classes.DRAWER_BODY}>{children}</div>;
export function DrawerBody({ children, className }) {
return <div className={clsx(Classes.DRAWER_BODY, className)}>{children}</div>;
}
export * from './DrawerActionsBar';

View File

@@ -26,12 +26,12 @@ const SelectButton = styled(Button)`
position: relative;
padding-right: 30px;
&.bp4-small{
&.bp4-small {
padding-right: 24px;
}
&:not(.is-selected):not([class*='bp4-intent-']):not(.bp4-minimal) {
color: #5c7080;
color: #8f99a8;
}
&:after {
content: '';