ivmarcos / react-to-pdf

Generate pdf from react components
MIT License
271 stars 61 forks source link

Bottom of page content is cut off in PDF #111

Open t3db0t opened 7 months ago

t3db0t commented 7 months ago

In the browser, the content ends like this:

Screenshot 2024-01-20 at 5 22 30 PM

But in the PDF it's cut off:

Screenshot 2024-01-20 at 5 22 38 PM

My options are:

const { toPDF, targetRef } = usePDF({
    page: {
      margin: Margin.SMALL,
      format: 'letter',
    },
    filename: `...`
  });
WaelNalouti commented 7 months ago

Adding a padding would fix this issue

<div classname="py-2">
     ... 
<div>
t3db0t commented 7 months ago

That was the first thing I tried, but anything and everything I add after the content is also cut off at the exact same place.

ajmalaPiacademy commented 5 months ago

I am also facing this ..Any updates?