Spaces:
Sleeping
Sleeping
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| body { | |
| @apply text-gray-900 bg-gray-50; | |
| } | |
| } | |
| /* Print Styles */ | |
| @media print { | |
| .no-print, button, nav, header, .sidebar { | |
| display: none ; | |
| } | |
| body { | |
| background-color: white; | |
| } | |
| .shadow, .shadow-md, .shadow-lg { | |
| box-shadow: none ; | |
| border: 1px solid #eee; | |
| } | |
| /* Ensure charts are visible */ | |
| canvas { | |
| max-width: 100% ; | |
| } | |
| } | |