Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 2c5a5d5

Browse files
committed
increase pdf viewer height
1 parent 68517f3 commit 2c5a5d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/PDFViewer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ interface PDFViewerProps {
66
* Display a PDF file.
77
*/
88
const PDFViewer = ({ url }: PDFViewerProps) => {
9-
return <iframe src={url} width="100%" height="500px" title="PDF" />;
9+
return <iframe src={url} width="100%" height="700px" title="PDF" />;
1010
};
1111

1212
export default PDFViewer;

0 commit comments

Comments
 (0)