mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
13 lines
217 B
TypeScript
13 lines
217 B
TypeScript
export enum ROW_TYPE {
|
|
ITEM = 'ITEM',
|
|
TOTAL = 'TOTAL',
|
|
}
|
|
|
|
export const HtmlTableCustomCss = `
|
|
table tr.row-type--total td {
|
|
border-top: 1px solid #bbb;
|
|
font-weight: 600;
|
|
border-bottom: 3px double #000;
|
|
}
|
|
`;
|