Spaces:
Sleeping
Sleeping
File size: 475 Bytes
afd0ae6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
@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 !important;
}
body {
background-color: white;
}
.shadow, .shadow-md, .shadow-lg {
box-shadow: none !important;
border: 1px solid #eee;
}
/* Ensure charts are visible */
canvas {
max-width: 100% !important;
}
}
|