mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
30 lines
666 B
CSS
30 lines
666 B
CSS
|
/* This hides unwanted metadata such as url, date, etc from appearing on a printed page. */
|
||
|
@media print {
|
||
|
@page {
|
||
|
margin-top: .25em;
|
||
|
margin-bottom: .25em;
|
||
|
}
|
||
|
.card {
|
||
|
page-break-inside: avoid;
|
||
|
break-inside: avoid;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.posItems {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
|
||
|
grid-gap: 1.5rem;
|
||
|
}
|
||
|
|
||
|
.card {
|
||
|
page-break-inside: avoid;
|
||
|
}
|
||
|
|
||
|
.qr-code {
|
||
|
width: 100%;
|
||
|
min-width: auto !important;
|
||
|
min-height: auto !important;
|
||
|
border-bottom-right-radius: var(--btcpay-card-inner-border-radius);
|
||
|
border-bottom-left-radius: var(--btcpay-card-inner-border-radius);
|
||
|
}
|