Minor improvements

This commit is contained in:
Pierre HUBERT 2023-08-23 15:32:02 +02:00
parent 852354b739
commit e97814586e
2 changed files with 9 additions and 5 deletions

View File

@ -76,7 +76,7 @@ export function ComplexFamilyTree(p: {
const exportPDF = async () => {
const doc = new jsPDF({
orientation: "l",
format: [900, 1200],
format: [351, 351],
});
// Clone the SVG to manipulate it
@ -105,11 +105,13 @@ export function ComplexFamilyTree(p: {
`class="text-overflow-mask" fill="transparent"`
);
dstSVG = dstSVG.replaceAll(`>UNKNOWN<`, `fill="#000">INCONNU<`);
target.innerHTML = dstSVG;
await doc.svg(target, {
height: 3508,
width: 2480,
height: 351,
width: 351,
});
container.remove();

View File

@ -105,7 +105,9 @@
position: fixed;
top: 0px;
left: 0px;
width: 3508px;
height: 2480px;
/*width: 3508px;
height: 2480px;*/
width: 351px;
height: 248px;
opacity: 0;
}