Operation processes on invoices

This commit is contained in:
2026-02-13 00:11:51 +01:00
parent 882752472e
commit fd403f8520
44 changed files with 1635 additions and 42 deletions

View File

@@ -39,3 +39,27 @@ fieldset legend {
background-color: #ffffff;
border-radius: 10px;
}
.invoice-list-table {
width: 90%;
margin: 20px auto;
}
.invoice-list-table td {
border-bottom: 1px solid #c3c4c7;
padding: 10px;
}
.invoice-list-table tr td:first-child {
border-left: 1px solid #c3c4c7;
}
.invoice-list-table tr td:last-child {
border-right: 1px solid #c3c4c7;
}
.invoice-list-table tr:first-child td {
background: linear-gradient(to bottom, #fff, #f6f7f7);
}