mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 23:00:34 +00:00
fix(Branches): min height.
This commit is contained in:
@@ -62,7 +62,7 @@ function BranchesDataTable({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<BranchesTableCard>
|
<BranchesTableCard>
|
||||||
<DataTable
|
<BranchesTable
|
||||||
columns={columns}
|
columns={columns}
|
||||||
data={branches}
|
data={branches}
|
||||||
loading={isBranchesLoading}
|
loading={isBranchesLoading}
|
||||||
@@ -86,3 +86,9 @@ export default compose(withDialogActions, withAlertActions)(BranchesDataTable);
|
|||||||
const BranchesTableCard = styled(Card)`
|
const BranchesTableCard = styled(Card)`
|
||||||
padding: 0;
|
padding: 0;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const BranchesTable = styled(DataTable)`
|
||||||
|
.table .tr {
|
||||||
|
min-height: 38px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|||||||
Reference in New Issue
Block a user