feat: fix border

This commit is contained in:
2024-09-11 21:10:57 +03:00
parent b44cb0c222
commit eacf14778c

View File

@@ -66,6 +66,10 @@
background-color: #dbdbdb; background-color: #dbdbdb;
} }
tr {
page-break-inside: avoid;
}
td, th { td, th {
padding: 16px 13px; padding: 16px 13px;
} }
@@ -90,6 +94,11 @@
width: 170px; width: 170px;
margin-bottom: 15px; margin-bottom: 15px;
} }
table tfoot {
border-top: 2px solid black;
}
</style> </style>
</head> </head>
<body> <body>
@@ -124,6 +133,8 @@
<th>Цена</th> <th>Цена</th>
<th>Сумма</th> <th>Сумма</th>
</tr> </tr>
<tfoot>
</tfoot>
</thead> </thead>
<tbody> <tbody>
{% for service in services %} {% for service in services %}
@@ -135,6 +146,7 @@
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
</div> </div>
<div class="footer"> <div class="footer">