Spaces:
Build error
Build error
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| body { | |
| @apply bg-gray-50; | |
| } | |
| .print-modal-content { | |
| @apply max-h-screen overflow-y-auto; | |
| } | |
| /* Print-specific styles */ | |
| @media print { | |
| body * { | |
| visibility: hidden; | |
| } | |
| #printable-content, #printable-content * { | |
| visibility: visible; | |
| } | |
| #printable-content { | |
| position: absolute; | |
| left: 0; | |
| top: 0; | |
| width: 100%; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| .no-print { | |
| display: none ; | |
| } | |
| } |