Files
bigcapital/packages/server/src/services/FinancialStatements/TrialBalanceSheet/_constants.ts
2024-02-19 21:41:15 +02:00

13 lines
223 B
TypeScript

export enum IROW_TYPE {
ACCOUNT = 'ACCOUNT',
TOTAL = 'TOTAL',
}
export const HtmlTableCustomCss = `
table tr.row-type--total td{
border-top: 1px solid #bbb;
font-weight: 500;
border-bottom: 3px double #000;
}
`;