Files
bigcapital/client/src/style/pages/FinancialStatements/TrialBalanceSheet.scss
2021-01-18 20:08:08 +02:00

32 lines
615 B
SCSS

.financial-sheet{
&--trial-balance{
min-width: 720px;
.financial-sheet__table{
.thead,
.tbody{
.tr .td:not(:first-child),
.tr .th:not(:first-child) {
justify-content: flex-end;
}
}
.tbody{
.tr .td{
border-bottom: 0;
padding-top: 0.4rem;
padding-bottom: 0.4rem;
}
.balance.td{
border-top-color: #000;
}
.tr.row_type--total .td{
border-top: 1px solid #000;
font-weight: 500;
border-bottom: 3px double #000;
}
}
}
}
}