mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
* initial commit * add docs * black & prettier * mobile styles * add print view * prettier * make format * initial migrations un-messed * make migrations work for sqlite * add invoices table * clean migrations * add migration to conv * fix card size * hopefully fix test migration * add missing status * timestamp * init testing * remove draft invoice by default on create * what should i test * make format * raise if not invoice * new test and renaming * fix issue reported by @talvasconcelos which prevented users from setting status on creation * readme * run black * trying to make tests work * make it work again * send paid amount * partial pay flow * good coding * can't get these test to work * clean up and commenting * make format * validation for 2 decimals Co-authored-by: ben <ben@arc.wales> Co-authored-by: Tiago vasconcelos <talvasconcelos@gmail.com>
55 lines
No EOL
681 B
CSS
55 lines
No EOL
681 B
CSS
#invoicePage>.row:first-child>.col-xs {
|
|
display: flex;
|
|
}
|
|
|
|
#invoicePage>.row:first-child>.col-xs>.q-card {
|
|
flex: 1;
|
|
}
|
|
|
|
|
|
#invoicePage .clear {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
#printQrCode {
|
|
display: none;
|
|
}
|
|
|
|
@media print {
|
|
* {
|
|
color: black !important;
|
|
}
|
|
|
|
header, button, #payButtonContainer {
|
|
display: none !important;
|
|
}
|
|
|
|
main, .q-page-container {
|
|
padding-top: 0px !important;
|
|
}
|
|
|
|
.q-card {
|
|
box-shadow: none !important;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.q-item {
|
|
padding: 5px;
|
|
}
|
|
|
|
.q-card__section {
|
|
padding: 5px;
|
|
}
|
|
|
|
#printQrCode {
|
|
display: block;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 0px !important;
|
|
}
|
|
|
|
#invoicePage .clear {
|
|
margin-bottom: 10px !important;
|
|
}
|
|
} |