printer-mobile.css 570 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import '../../src/renderer/printer/App.css';
  2. html,
  3. body {
  4. min-width: 0;
  5. overflow: auto;
  6. background: #f3f4f6;
  7. }
  8. #root {
  9. min-height: 100%;
  10. }
  11. .mobile-print-back {
  12. position: fixed;
  13. z-index: 1000;
  14. top: 20px;
  15. left: 20px;
  16. display: inline-flex;
  17. width: 40px;
  18. height: 40px;
  19. align-items: center;
  20. justify-content: center;
  21. border: 1px solid #d9d9d9;
  22. border-radius: 6px;
  23. background: #ffffff;
  24. color: #1f2937;
  25. font-size: 20px;
  26. box-shadow: 0 2px 8px rgb(0 0 0 / 12%);
  27. }
  28. @media print {
  29. .mobile-print-back {
  30. display: none !important;
  31. }
  32. }