Spaces:
Sleeping
Sleeping
Commit
·
2639a2b
1
Parent(s):
f80fd9f
fix: table view and printing
Browse files- index.html +1 -1
- script.js +1 -1
index.html
CHANGED
@@ -299,7 +299,7 @@
|
|
299 |
>
|
300 |
<div class="flex items-center justify-center min-h-screen">
|
301 |
<div
|
302 |
-
class="bg-white p-8 rounded-lg
|
303 |
>
|
304 |
<button
|
305 |
id="close-quotation"
|
|
|
299 |
>
|
300 |
<div class="flex items-center justify-center min-h-screen">
|
301 |
<div
|
302 |
+
class="bg-white p-8 rounded-lg max-w-4xl w-full mx-auto my-8 relative"
|
303 |
>
|
304 |
<button
|
305 |
id="close-quotation"
|
script.js
CHANGED
@@ -196,7 +196,7 @@ if (typeof document !== "undefined") {
|
|
196 |
`;
|
197 |
});
|
198 |
// Add empty rows to fill the page
|
199 |
-
for (let i = items.length; i <
|
200 |
html +=
|
201 |
"<tr><td> </td><td></td><td></td><td></td><td></td><td></td><td></td></tr>";
|
202 |
}
|
|
|
196 |
`;
|
197 |
});
|
198 |
// Add empty rows to fill the page
|
199 |
+
for (let i = items.length; i < 20; i++) {
|
200 |
html +=
|
201 |
"<tr><td> </td><td></td><td></td><td></td><td></td><td></td><td></td></tr>";
|
202 |
}
|