mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
24 lines
454 B
TypeScript
24 lines
454 B
TypeScript
export enum ROW_TYPE {
|
|
ITEM = 'ITEM',
|
|
TOTAL = 'TOTAL',
|
|
}
|
|
|
|
export const HtmlTableCustomCss = `
|
|
table tr.row-type--total td {
|
|
border-top: 1px solid #bbb;
|
|
border-bottom: 3px double #000;
|
|
font-weight: 600;
|
|
}
|
|
table .column--item_name{
|
|
width: 300px;
|
|
}
|
|
table .column--average_price,
|
|
table .column--sold_quantity,
|
|
table .column--sold_amount,
|
|
table .cell--average_price,
|
|
table .cell--sold_quantity,
|
|
table .cell--sold_amount{
|
|
text-align: right;
|
|
}
|
|
`;
|