anycoder-6340ea4c / styles /globals.css
Dariky's picture
Upload styles/globals.css with huggingface_hub
3cae081 verified
raw
history blame contribute delete
494 Bytes
@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 !important;
}
}