Skip to content

Commit

Permalink
feat: improve financial statements rows color (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
abouolia authored Oct 24, 2023
1 parent 6307ca8 commit 0179086
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const BalanceSheetDataTable = styled(ReportDataTable)`
border-bottom: 0;
padding-top: 0.32rem;
padding-bottom: 0.32rem;
color: #252A31;
}
&.is-expanded {
.td:not(.name) .cell-inner {
Expand All @@ -72,6 +73,7 @@ const BalanceSheetDataTable = styled(ReportDataTable)`
.td {
font-weight: 500;
border-top: 1px solid #bbb;
color: #000;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ const CashflowStatementDataTable = styled(DataTable)`
border-bottom: 0;
padding-top: 0.32rem;
padding-bottom: 0.32rem;
color: #252a31;
}
// &.row-type--AGGREGATE,
&.row_type--ACCOUNTS {
border-top: 1px solid #bbb;
}
Expand All @@ -72,6 +71,9 @@ const CashflowStatementDataTable = styled(DataTable)`
&.row_type--TOTAL {
font-weight: 500;
.td {
color: #000;
}
&:not(:first-child) .td {
border-top: 1px solid #bbb;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const ProfitLossDataTable = styled(ReportDataTable)`
border-bottom: 0;
padding-top: 0.32rem;
padding-bottom: 0.32rem;
color: #252A31;
}
&.is-expanded {
.td:not(.name) .cell-inner {
Expand All @@ -71,6 +72,7 @@ const ProfitLossDataTable = styled(ReportDataTable)`
.td {
font-weight: 500;
border-top: 1px solid #bbb;
color: #000;
}
}
&:last-of-type .td {
Expand Down

0 comments on commit 0179086

Please sign in to comment.