mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
export enum AgingSummaryRowType {
|
|
Contact = 'contact',
|
|
Total = 'total',
|
|
}
|
|
|
|
export const HtmlTableCss = `
|
|
table tr.row-type--total td{
|
|
font-weight: 500;
|
|
border-top: 1px solid #bbb;
|
|
border-bottom: 3px double #333;
|
|
}
|
|
`;
|