Make sure payment request print view doesn't show table header twice (#4447)

This commit is contained in:
Umar Bolatov
2022-12-16 23:00:35 -08:00
committed by GitHub
parent 5e983641b6
commit 674d5bae8a

View File

@@ -63,6 +63,11 @@
.invoice { margin-top: var(--btcpay-space-s); }
.invoice + .invoice { margin-top: var(--btcpay-space-m); }
.invoice .badge { font-size: var(--btcpay-font-size-s); }
@@media print {
@* This is to avoid table header showing up twice: https://github.com/btcpayserver/btcpayserver/issues/4341 *@
thead { display: table-row-group; }
}
</style>
</head>
<body>