| 123456789101112131415161718192021222324252627282930313233343536 |
- @import '../../src/renderer/printer/App.css';
- html,
- body {
- min-width: 0;
- overflow: auto;
- background: #f3f4f6;
- }
- #root {
- min-height: 100%;
- }
- .mobile-print-back {
- position: fixed;
- z-index: 1000;
- top: 20px;
- left: 20px;
- display: inline-flex;
- width: 40px;
- height: 40px;
- align-items: center;
- justify-content: center;
- border: 1px solid #d9d9d9;
- border-radius: 6px;
- background: #ffffff;
- color: #1f2937;
- font-size: 20px;
- box-shadow: 0 2px 8px rgb(0 0 0 / 12%);
- }
- @media print {
- .mobile-print-back {
- display: none !important;
- }
- }
|