| 1234567891011121314151617181920212223242526 |
- /* Invoice Print
- ******************************************************************************* */
-
- @import "../_bootstrap-extended/include";
-
- html,
- body {
- background: $white;
- }
-
- body > :not(.invoice-print) {
- display: none !important;
- }
-
- .invoice-print {
- font-size: 15px;
- min-inline-size: 768px !important;
- }
-
- .invoice-print * {
- color: $body-color !important;
- }
-
- .invoice-print .text-primary * {
- color: var(--#{$prefix}primary) !important;
- }
|