File size: 494 Bytes
3cae081
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
@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;
  }
}