feat(financial statment): inventory valuation.

This commit is contained in:
elforjani3
2021-03-29 19:24:34 +02:00
parent 5f573c095e
commit f21b98eac3
10 changed files with 581 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
.financial-sheet {
&--inventory-valuation {
min-width: 800px;
.financial-sheet__table {
.thead,
.tbody {
.tr .td:not(:first-child),
.tr .th:not(:first-child) {
text-align: right;
}
}
.tbody {
.tr .td {
border-bottom: 0;
padding-top: 0.4rem;
padding-bottom: 0.4rem;
}
.tr.row_type--total .td {
border-top: 1px solid #000;
font-weight: 500;
border-bottom: 3px double #000;
}
}
}
}
}