mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
re-structure to monorepo.
This commit is contained in:
25
packages/webapp/src/components/CommercialDoc/index.tsx
Normal file
25
packages/webapp/src/components/CommercialDoc/index.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import styled from 'styled-components';
|
||||
import { Card } from '../Card';
|
||||
import { DataTable } from '../Datatable';
|
||||
|
||||
export const CommercialDocBox = styled(Card)`
|
||||
padding: 22px 20px;
|
||||
`;
|
||||
|
||||
export const CommercialDocHeader = styled.div`
|
||||
margin-bottom: 25px;
|
||||
`;
|
||||
|
||||
export const CommercialDocTopHeader = styled.div`
|
||||
margin-bottom: 30px;
|
||||
`;
|
||||
|
||||
export const CommercialDocEntriesTable = styled(DataTable)`
|
||||
.tbody .tr:last-child .td {
|
||||
border-bottom: 1px solid #d2dce2;
|
||||
}
|
||||
`;
|
||||
|
||||
export const CommercialDocFooter = styled.div`
|
||||
margin-top: 28px;
|
||||
`;
|
||||
Reference in New Issue
Block a user