From 5da4417bb5e0fcc1fdb0f9818f1eee1857bc054b Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Mon, 2 Jun 2025 15:42:27 +0900 Subject: [PATCH] style: refine PDF component layout and styles for improved presentation - Removed unnecessary margin from the creation time display in SuitableDownloadPdf for better alignment. - Added flexbox properties to the PDF table content for enhanced structure and height consistency. --- src/components/pdf/SuitableDownloadPdf.tsx | 2 +- src/styles/components/_pdfview.scss | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/pdf/SuitableDownloadPdf.tsx b/src/components/pdf/SuitableDownloadPdf.tsx index 910d9b3..c034fe9 100644 --- a/src/components/pdf/SuitableDownloadPdf.tsx +++ b/src/components/pdf/SuitableDownloadPdf.tsx @@ -124,7 +124,7 @@ export default function SuitableDownloadPdf() { ))} -
{createTime}
+
{createTime}
diff --git a/src/styles/components/_pdfview.scss b/src/styles/components/_pdfview.scss index e5d2df1..44e2a77 100644 --- a/src/styles/components/_pdfview.scss +++ b/src/styles/components/_pdfview.scss @@ -91,6 +91,9 @@ } .pdf-table-content{ + display: flex; + flex-direction: column; + height: 1050px; padding: 20px; margin-bottom: 50px; }