Spaces:
Sleeping
Sleeping
File size: 1,438 Bytes
1643ce8 73b6f92 1643ce8 f48f5c4 1643ce8 73b6f92 58c8c26 802cdd2 58c8c26 41178f4 58c8c26 ed33547 1643ce8 9b70d7b 1643ce8 9b70d7b 73b6f92 | 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | @tailwind base;
@tailwind components;
@tailwind utilities;
* {
box-sizing: border-box;
}
img {
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
body {
@apply bg-gray-50 text-gray-900;
}
.template-field {
display: block;
min-height: 1.1em;
border-bottom: 1px dotted #d1d5db;
padding-bottom: 1px;
}
.template-field-multiline {
min-height: 1.8em;
white-space: pre-wrap;
}
.template-field[contenteditable="true"]:empty:before {
content: attr(data-placeholder);
color: #9ca3af;
}
.avoid-break {
break-inside: avoid;
page-break-inside: avoid;
}
report-editor {
display: block;
width: 100%;
}
report-editor[data-mode="page"] [data-overlay] {
position: static;
inset: auto;
width: 100%;
height: auto;
z-index: auto;
}
report-editor[data-mode="page"] [data-backdrop] {
display: none;
}
report-editor[data-mode="page"] [data-shell-wrap] {
position: static;
height: auto;
width: 100%;
padding: 0;
}
report-editor[data-mode="page"] [data-shell] {
max-width: none;
border-radius: 0;
box-shadow: none;
}
summary::-webkit-details-marker {
display: none;
}
@media print {
@page {
size: A4;
margin: 10mm;
}
body {
background: #ffffff;
}
.no-print {
display: none !important;
}
.print-page {
break-after: page;
page-break-after: always;
}
.print-page:last-child {
break-after: auto;
page-break-after: auto;
}
}
|